:root {
    --dt-ink: #102126;
    --dt-ink-soft: #31474d;
    --dt-muted: #5d7076;
    --dt-line: rgba(18, 33, 38, 0.13);
    --dt-panel: rgba(255, 255, 255, 0.9);
    --dt-panel-solid: #ffffff;
    --dt-teal: #0d7b82;
    --dt-teal-dark: #075b61;
    --dt-cyan: #1aa6bd;
    --dt-lime: #87bd25;
    --dt-amber: #d99125;
    --dt-shadow: 0 24px 70px rgba(16, 33, 38, 0.17);
    --dt-soft-shadow: 0 14px 36px rgba(16, 33, 38, 0.11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body.dt-page {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--dt-ink);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
    background:
        linear-gradient(180deg, rgba(9, 33, 38, 0.38), rgba(5, 25, 30, 0.58)),
        url("../images/fon.png") center top / cover fixed no-repeat,
        #0f2f34;
    text-rendering: optimizeLegibility;
}

body.dt-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(6, 31, 36, 0.42), rgba(6, 31, 36, 0.08) 46%, rgba(6, 31, 36, 0.36)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(13, 123, 130, 0.18)),
        repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 42px);
}

.container {
    width: min(100% - 32px, 1320px);
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--dt-teal);
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a:hover {
    color: var(--dt-teal-dark);
    text-decoration: none;
}

p {
    margin: 0 0 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--dt-ink);
    font-family: "Manrope", Arial, sans-serif;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
}

ul,
ol,
dl {
    margin: 0;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.site-main {
    overflow: hidden;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 26px;
    margin: 0 0 12px;
    color: var(--dt-teal);
    font-size: 13px;
    font-weight: 800;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--dt-lime), var(--dt-cyan));
}

.primary-btn,
.secondary-btn,
.header-cta,
.text-link,
.bizwheel-btn,
.bbcodes,
.news-button .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.primary-btn,
.header-cta,
.bizwheel-btn,
.bbcodes,
.news-button .btn {
    color: #fff !important;
    background: linear-gradient(135deg, var(--dt-teal), var(--dt-cyan));
    box-shadow: 0 14px 30px rgba(13, 123, 130, 0.25);
}

.primary-btn:hover,
.header-cta:hover,
.bizwheel-btn:hover,
.bbcodes:hover,
.news-button .btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(13, 123, 130, 0.28);
}

.secondary-btn,
.text-link {
    color: var(--dt-ink) !important;
    border-color: rgba(13, 123, 130, 0.25);
    background: rgba(255, 255, 255, 0.72);
}

.secondary-btn:hover,
.text-link:hover {
    color: var(--dt-teal-dark) !important;
    border-color: rgba(13, 123, 130, 0.45);
    background: #fff;
}

.button-row,
.hero-actions,
.story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Header */
.site-header {
    position: relative;
    z-index: 20;
}

.top-strip {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(16, 33, 38, 0.94);
    backdrop-filter: blur(12px);
}

.top-strip__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 10px;
    align-items: center;
    min-height: 42px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.top-strip__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px;
    font-weight: 700;
}

.top-strip__item i {
    color: var(--dt-lime);
}

.top-strip__item span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-strip__item:hover {
    color: #fff !important;
}

.top-strip__item--admin {
    border: 1px solid rgba(129, 216, 208, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 30;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 36px rgba(16, 33, 38, 0.08);
}

.main-header::before {
    content: "";
    display: none;
}

.main-header__inner {
    display: grid;
    grid-template-columns: auto minmax(320px, 1fr) auto;
    gap: 24px;
    align-items: center;
    min-height: 86px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: var(--dt-ink) !important;
}

.brand img {
    width: 74px !important;
    height: 58px !important;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(16, 33, 38, 0.16));
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    color: var(--dt-ink);
    font-size: 22px;
    line-height: 1;
}

.brand-copy small {
    color: var(--dt-muted);
    font-size: 12px;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 0;
    list-style: none;
}

.nav-menu li {
    margin: 0;
    list-style: none;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    color: var(--dt-ink) !important;
    font-size: 15px;
    font-weight: 800;
}

.nav-menu a:hover {
    color: var(--dt-teal-dark) !important;
    background: rgba(13, 123, 130, 0.08);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.icon-link,
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(13, 123, 130, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
}

.icon-link:hover,
.footer-social a:hover {
    transform: translateY(-2px);
    border-color: rgba(13, 123, 130, 0.35);
    background: #fff;
    box-shadow: var(--dt-soft-shadow);
}

.icon-link img,
.footer-social img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.header-cta {
    min-height: 42px;
    padding: 0 18px;
}

/* Hero */
.premium-hero.hero-slider {
    position: relative;
    min-height: 430px !important;
    height: auto !important;
    padding: 32px 0 8px;
    overflow: hidden;
    background: transparent !important;
}

.premium-hero.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(4, 24, 29, 0.5), rgba(4, 24, 29, 0.22) 55%, rgba(4, 24, 29, 0.08));
}

.hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 28px;
    align-items: center;
    min-width: 0;
}

.hero-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
    max-width: 700px;
}

.hero-copy h1 {
    max-width: min(680px, 100%);
    color: #fff;
    font-size: 50px;
    overflow-wrap: break-word;
    text-shadow: 0 18px 46px rgba(4, 24, 29, 0.38);
}

.hero-lead {
    max-width: 650px;
    margin: 18px 0 0;
    color: rgba(239, 250, 248, 0.88);
    font-size: 18px;
    line-height: 1.75;
}

.premium-hero .eyebrow {
    color: rgba(232, 250, 246, 0.88);
}

.premium-hero .eyebrow::before {
    background: linear-gradient(90deg, var(--dt-lime), var(--dt-cyan));
}

.premium-hero .secondary-btn {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(8, 35, 40, 0.54);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.premium-hero .secondary-btn:hover {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(8, 35, 40, 0.72);
}

.hero-actions {
    margin-top: 20px;
}

.hero-visual {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product {
    position: relative;
    z-index: 1;
    width: 112% !important;
    max-width: 680px !important;
    height: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    filter: drop-shadow(0 34px 42px rgba(4, 24, 29, 0.42));
    animation: dtFloat 7s ease-in-out infinite;
}

/* The showcase bitmap has generous dark padding. Negative margins keep the
   turtle visually large while letting the catalog start much earlier. */
@media (min-width: 1200px) {
    .hero-product {
        margin-top: -96px !important;
        margin-bottom: -118px !important;
    }
}

@keyframes dtFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Sections */
.catalog-section,
.home-services,
.home-process,
.home-materials,
.content-section,
.about-premium {
    position: relative;
    padding: 56px 0;
}

.catalog-section {
    padding-top: 16px;
}

.catalog-section > .container,
.content-section > .container {
    max-width: 1480px;
}

.catalog-section,
.home-services,
.home-process,
.home-materials,
.content-section {
    background: transparent !important;
}

.content-section--compact {
    padding-top: 0;
}

.section-heading {
    min-width: 0;
    max-width: 820px;
    margin: 0 0 34px;
}

.section-heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.section-heading h2,
.home-services h2,
.home-process h2,
.home-materials h2,
.home-cta h2 {
    font-size: 40px;
    overflow-wrap: break-word;
}

.catalog-section .section-heading h2,
.home-services > .container > .section-heading h2,
.home-process .process-copy h2,
.home-materials .materials-layout > div > h2 {
    color: #fff;
    text-shadow: 0 16px 40px rgba(4, 24, 29, 0.34);
}

.section-heading p:last-child,
.home-services .section-heading p,
.process-copy p,
.home-materials p {
    color: rgba(229, 245, 241, 0.82);
    font-size: 17px;
}

/* News cards */
.news-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
    justify-content: stretch !important;
    width: 100%;
}

.single-news,
.single-news.print-card {
    position: relative;
    display: flex !important;
    flex-direction: column;
    width: 100% !important;
    max-width: none !important;
    min-height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid var(--dt-line);
    border-radius: 8px;
    background: var(--dt-panel-solid) !important;
    box-shadow: var(--dt-soft-shadow);
    text-align: left !important;
}

.single-news::before,
.single-news::after {
    display: none !important;
}

.print-card__media,
.news-head {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 !important;
    overflow: hidden;
    background: #eef5f4;
}

.print-card__media img,
.news-head img,
.news-img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.print-card:hover .print-card__media img,
.single-news:hover .news-head img {
    transform: scale(1.04);
}

.print-card__body,
.news-body,
.single-news .news-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    padding: 24px !important;
    background: transparent !important;
}

.news-title {
    margin: 0;
    line-height: 1.25;
    text-align: left !important;
}

.news-title a,
.single-news .news-title a {
    color: var(--dt-ink) !important;
    font-size: 22px !important;
    font-weight: 800;
    line-height: 1.25;
    text-shadow: none !important;
}

.news-title a:hover {
    color: var(--dt-teal-dark) !important;
}

.print-card__price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-height: 34px;
    margin-top: 16px;
    padding: 0 12px;
    border: 1px solid rgba(13, 123, 130, 0.18);
    border-radius: 8px;
    color: var(--dt-teal-dark);
    background: rgba(13, 123, 130, 0.08);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

a.print-card__price:hover {
    color: var(--dt-teal-dark);
    background: rgba(13, 123, 130, 0.14);
    border-color: rgba(13, 123, 130, 0.28);
    transform: translateY(-1px);
}

.catalog-quick-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.catalog-quick-filters a,
.product-request-suggestions button {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(13, 123, 130, 0.16);
    border-radius: 999px;
    color: var(--dt-teal-dark);
    background: rgba(13, 123, 130, 0.07);
    font-size: 12px;
    font-weight: 900;
}

.catalog-quick-filters {
    margin: -12px 0 30px;
}

.catalog-quick-filters a {
    color: rgba(239, 250, 248, 0.92) !important;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.catalog-quick-filters a:hover {
    color: #fff !important;
    border-color: rgba(55, 203, 185, 0.48);
    background: rgba(13, 123, 130, 0.42);
}

.catalog-quick-filters a.is-active {
    color: #fff !important;
    border-color: rgba(129, 216, 208, 0.78);
    background: linear-gradient(135deg, rgba(13, 123, 130, 0.82), rgba(55, 203, 185, 0.36));
    box-shadow: 0 10px 24px rgba(3, 18, 20, 0.18);
}

.print-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.news-text {
    display: none !important;
}

.print-card__link,
.print-card__request {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(13, 123, 130, 0.18);
    color: var(--dt-teal-dark) !important;
    background: rgba(13, 123, 130, 0.06);
    font-size: 14px;
    font-weight: 800;
}

.print-card__request {
    color: #fff !important;
    border: 0;
    background: linear-gradient(135deg, var(--dt-teal-dark), var(--dt-cyan));
    cursor: pointer;
    font-family: inherit;
}

.print-card__link::after {
    content: "\f178";
    margin-left: 8px;
    font-family: "FontAwesome";
    font-weight: normal;
}

.print-card__request:hover,
.print-card__link:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(13, 123, 130, 0.16);
}

/* Cards and content */
.services-grid,
.process-steps,
.material-list,
.pricing-layout,
.footer-layout,
.contact-layout,
.about-layout,
.materials-layout,
.process-layout,
.cta-layout {
    display: grid;
    gap: 22px;
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.process-step,
.material-list li,
.price-card,
.contact-form-area,
.contact-panel,
.story-page,
.static-page {
    border: 1px solid var(--dt-line);
    border-radius: 8px;
    background: var(--dt-panel);
    box-shadow: var(--dt-soft-shadow);
}

.service-card {
    min-height: 260px;
    padding: 28px;
}

.service-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 8px;
    color: #fff;
    font-size: 22px;
    background: linear-gradient(135deg, var(--dt-teal), var(--dt-lime));
}

.service-card h3,
.process-step h3,
.material-list strong,
.price-card h3 {
    font-size: 22px;
}

.service-card p,
.process-step p,
.price-card p,
.contact-method span {
    margin: 12px 0 0;
    color: var(--dt-muted);
}

.process-layout {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
}

.process-copy {
    position: sticky;
    top: 120px;
}

.process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-step {
    padding: 26px;
}

.process-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 8px;
    color: var(--dt-teal-dark);
    font-weight: 800;
    background: rgba(135, 189, 37, 0.18);
}

.materials-layout,
.cta-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
}

.material-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    list-style: none;
}

.material-list li {
    display: grid;
    gap: 8px;
    min-height: 120px;
    padding: 22px;
}

.material-list strong {
    color: var(--dt-teal-dark);
    font-weight: 800;
}

.material-list span {
    color: var(--dt-muted);
}

.home-cta {
    padding: 58px 0;
    background: linear-gradient(135deg, rgba(16, 33, 38, 0.94), rgba(13, 91, 97, 0.92));
}

.home-cta .eyebrow,
.home-cta h2 {
    color: #fff;
}

.home-cta .eyebrow::before {
    background: linear-gradient(90deg, var(--dt-lime), var(--dt-amber));
}

.home-cta .cta-layout {
    grid-template-columns: minmax(0, 1fr) auto;
}

.interior-solutions,
.trust-section {
    position: relative;
    padding: 56px 0;
}

.interior-solutions .section-heading {
    max-width: 980px;
    margin-bottom: 32px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(4, 24, 29, 0.82), rgba(8, 55, 61, 0.72));
    box-shadow: 0 22px 60px rgba(4, 24, 29, 0.26);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.interior-solutions .section-heading .eyebrow {
    color: rgba(232, 250, 246, 0.9);
}

.interior-solutions .section-heading .eyebrow::before {
    background: linear-gradient(90deg, var(--dt-lime), var(--dt-cyan));
}

.interior-solutions .section-heading h2 {
    color: #fff;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.interior-solutions .section-heading p {
    color: rgba(239, 250, 248, 0.9);
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.solution-grid,
.trust-grid {
    display: grid;
    gap: 18px;
}

.solution-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-card,
.trust-grid > div {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: rgba(239, 250, 248, 0.9);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
    box-shadow: 0 18px 44px rgba(4, 24, 29, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.solution-card {
    min-height: 210px;
    padding: 24px;
}

.solution-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 8px;
    color: #061e22;
    background: linear-gradient(135deg, var(--dt-lime), var(--dt-cyan));
}

.solution-card h3,
.trust-grid strong {
    color: #fff;
}

.solution-card p,
.trust-grid span {
    color: rgba(229, 245, 241, 0.78);
}

.trust-section {
    padding-top: 26px;
}

.trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid > div {
    display: grid;
    gap: 8px;
    min-height: 132px;
    padding: 22px;
}

/* Inner pages */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 34px 0 22px;
    background: transparent !important;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(4, 24, 29, 0.5), rgba(4, 24, 29, 0.22) 55%, rgba(4, 24, 29, 0.08));
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.page-hero h1 {
    color: #fff;
    font-size: 46px;
    text-shadow: 0 18px 46px rgba(4, 24, 29, 0.38);
}

.page-hero p:last-child {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(239, 250, 248, 0.88);
    font-size: 18px;
}

.page-hero .eyebrow {
    color: rgba(232, 250, 246, 0.88);
}

.page-hero--compact {
    padding: 28px 0 14px;
}

.page-hero--compact .eyebrow,
.page-hero--compact p:last-child {
    display: none;
}

.page-hero--compact + .content-section {
    padding-top: 22px;
}

.story-page,
.static-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 52px;
}

.story-page,
.story-page .story-content,
.story-page .dt-product-story,
.story-page .dt-product-description,
.story-page .dt-product-copy {
    -webkit-user-select: none;
    user-select: none;
}

.story-page input,
.story-page textarea,
.story-page select,
.story-page .product-request-form,
.story-page .product-request-form * {
    -webkit-user-select: text;
    user-select: text;
}

.static-content-section {
    padding-top: 24px;
}

.page-hero + .content-section {
    padding-top: 24px;
}

.static-page--legacy {
    position: relative;
    overflow: hidden;
    max-width: 1120px !important;
    margin: 0 auto !important;
    padding: 52px !important;
    border: 1px solid var(--dt-line) !important;
    border-radius: 8px !important;
    color: var(--dt-ink-soft) !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: var(--dt-soft-shadow) !important;
    transform: none !important;
    perspective: none !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.static-page--legacy:hover {
    transform: none !important;
    box-shadow: var(--dt-soft-shadow) !important;
}

.static-page--legacy::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--dt-lime), var(--dt-cyan), var(--dt-amber));
}

.static-admin-link {
    display: inline-flex;
    margin: 0 0 20px;
    color: var(--dt-teal-dark);
    font-weight: 800;
}

.story-header {
    margin-bottom: 28px;
}

.story-header h1 {
    font-size: 42px;
}

.story-content,
.static-page,
.static-text {
    color: var(--dt-ink-soft);
    font-size: 17px;
}

.static-text {
    position: relative;
    display: flow-root;
}

.static-page--legacy .static-page,
.static-page--legacy .static-text .static-page {
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: inherit !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    perspective: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.static-page--legacy .breadcrumbs,
.static-page--legacy .bread-inner,
.static-page--legacy .bread-menu,
.static-page--legacy .bread-title {
    display: none !important;
}

.static-text > *:first-child {
    margin-top: 0 !important;
}

.story-content h1,
.story-content h2,
.story-content h3,
.static-page h1,
.static-page h2,
.static-page h3,
.static-text h1,
.static-text h2,
.static-text h3 {
    margin: 30px 0 16px;
    color: var(--dt-ink) !important;
    font-weight: 800 !important;
    line-height: 1.18;
    text-shadow: none !important;
}

.story-content h2,
.static-page h2,
.static-text h2 {
    font-size: 30px;
}

.story-content p,
.static-page p,
.static-text p,
.static-page li,
.static-text li,
.static-page span,
.static-text span {
    color: var(--dt-ink-soft) !important;
    font-family: inherit !important;
    text-shadow: none !important;
}

.static-text *,
.static-page * {
    max-width: 100%;
    letter-spacing: 0 !important;
}

.static-text font,
.static-text center {
    color: inherit !important;
    font-family: inherit !important;
    font-size: inherit !important;
}

.static-text center,
.static-text [align="center"] {
    text-align: left !important;
}

.static-text [style*="text-align:center"],
.static-text [style*="text-align: center"],
.static-page [style*="text-align:center"],
.static-page [style*="text-align: center"] {
    text-align: left !important;
}

.static-page [style],
.static-text [style] {
    font-family: inherit !important;
    text-shadow: none !important;
}

.static-page div[style],
.static-page section[style],
.static-page article[style],
.static-page main[style],
.static-text div[style],
.static-text section[style],
.static-text article[style],
.static-text main[style] {
    color: var(--dt-ink-soft) !important;
    background: transparent !important;
    box-shadow: none !important;
}

.static-page .container,
.static-page .row,
.static-page [class*="col-"],
.static-text .container,
.static-text .row,
.static-text [class*="col-"] {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    float: none !important;
}

.story-content a,
.static-page a,
.static-text a {
    color: var(--dt-teal-dark) !important;
    font-weight: 800;
}

.story-content img,
.static-page img,
.static-text img {
    display: block;
    width: auto;
    max-width: 100%;
    margin: 24px auto;
    border-radius: 8px;
    background: transparent !important;
    box-shadow: 0 18px 42px rgba(16, 33, 38, 0.15);
}

.static-page ul,
.static-page ol,
.static-text ul,
.static-text ol {
    display: grid;
    gap: 10px;
    margin: 20px 0 0 !important;
    padding-left: 22px !important;
}

.static-rich {
    display: grid;
    gap: 22px;
}

.static-rich h2 {
    max-width: 820px;
    margin: 0 !important;
    font-size: 34px !important;
}

.static-rich h3 {
    margin: 6px 0 0 !important;
}

.static-rich p {
    max-width: 860px;
    margin: 0 !important;
}

.static-kicker {
    width: fit-content;
    padding: 7px 11px;
    border: 1px solid rgba(13, 123, 130, 0.18);
    border-radius: 999px;
    background: rgba(13, 123, 130, 0.08);
    color: var(--dt-teal-dark) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
}

.static-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.static-grid div,
.static-note {
    display: grid;
    gap: 7px;
    padding: 18px;
    border: 1px solid rgba(16, 33, 38, 0.1);
    border-radius: 8px;
    background: rgba(13, 123, 130, 0.06);
}

.static-grid strong,
.static-note strong {
    color: var(--dt-ink);
    font-size: 16px;
}

.static-grid span,
.static-note span {
    color: var(--dt-ink-soft) !important;
    line-height: 1.6;
}

.static-list {
    margin-top: 0 !important;
}

.static-page blockquote,
.static-text blockquote {
    margin: 28px 0;
    padding: 22px 24px;
    border-left: 4px solid var(--dt-teal);
    border-radius: 8px;
    color: var(--dt-ink-soft);
    background: rgba(13, 123, 130, 0.08);
}

/* Profile */
.profile-page {
    display: grid;
    gap: 24px;
}

.profile-hero,
.profile-card {
    border: 1px solid rgba(129, 216, 208, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 248, 245, 0.92));
    box-shadow: 0 24px 62px rgba(16, 33, 38, 0.13);
}

.profile-hero {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 28px;
    overflow: hidden;
}

.profile-avatar {
    width: 112px;
    height: 112px;
    overflow: hidden;
    border: 1px solid rgba(129, 216, 208, 0.34);
    border-radius: 8px;
    background: #0c2f34;
    box-shadow: 0 18px 34px rgba(4, 24, 29, 0.18);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-identity h1 {
    margin: 0 0 14px !important;
    color: var(--dt-ink) !important;
    font-size: clamp(30px, 4vw, 48px) !important;
}

.profile-badges,
.profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.profile-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(13, 123, 130, 0.16);
    border-radius: 999px;
    color: var(--dt-ink);
    background: rgba(13, 123, 130, 0.08);
    font-size: 13px;
    font-weight: 900;
}

.profile-badges .is-online {
    color: #0f5f45;
    background: #ddf7eb;
}

.profile-actions {
    justify-content: flex-end;
}

.profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
}

.profile-card {
    padding: 24px;
}

.profile-card--wide {
    grid-column: 1 / -1;
}

.profile-card h2,
.profile-edit-head h2 {
    margin: 0 0 18px !important;
    color: var(--dt-ink) !important;
    font-size: 24px !important;
}

.profile-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.profile-stat-grid div {
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(13, 123, 130, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.68);
}

.profile-stat-grid strong {
    display: block;
    color: var(--dt-teal-dark);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.profile-stat-grid span,
.profile-stat-grid small {
    display: block;
    margin-top: 7px;
    color: var(--dt-ink-soft);
    font-weight: 800;
}

.profile-info-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.profile-info-list div {
    display: grid;
    grid-template-columns: minmax(140px, 0.45fr) minmax(0, 1fr);
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(16, 33, 38, 0.08);
}

.profile-info-list div:last-child {
    border-bottom: 0;
}

.profile-info-list dt {
    color: var(--dt-ink-soft);
    font-size: 13px;
    font-weight: 900;
}

.profile-info-list dd {
    margin: 0;
    color: var(--dt-ink);
    font-weight: 800;
}

.profile-text {
    color: var(--dt-ink-soft);
    font-size: 16px;
    line-height: 1.75;
}

.profile-xfields:empty {
    display: none;
}

.profile-edit-panel {
    display: grid;
    gap: 20px;
}

.profile-edit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.profile-edit-grid label {
    display: grid;
    gap: 8px;
    margin: 0;
    color: var(--dt-ink);
    font-size: 13px;
    font-weight: 900;
}

.profile-edit-wide {
    grid-column: 1 / -1;
}

.profile-edit-grid input,
.profile-edit-grid textarea,
.profile-edit-grid select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(16, 33, 38, 0.14);
    border-radius: 8px;
    color: var(--dt-ink);
    background: rgba(255, 255, 255, 0.88);
    font: inherit;
    outline: none;
}

.profile-edit-grid textarea {
    min-height: 128px;
    resize: vertical;
}

.profile-edit-actions {
    margin-top: 18px;
}

/* Generated product news: used by the simplified admin publisher. */
.dt-product-story {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 32px;
    align-items: center;
    margin: 8px 0 30px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(13, 123, 130, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 249, 247, 0.92)),
        linear-gradient(135deg, rgba(135, 189, 37, 0.12), transparent 54%);
    box-shadow: 0 24px 62px rgba(16, 33, 38, 0.13);
}

.dt-product-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.dt-product-image,
.story-content .dt-product-image {
    display: block;
    min-width: 0;
    aspect-ratio: 1 / 1;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(16, 33, 38, 0.1);
    border-radius: 8px;
    background: #0c2f34;
}

.dt-product-image a,
.story-content .dt-product-image a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.dt-product-image:first-child {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
}

.dt-product-image img,
.story-content .dt-product-image img {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    object-fit: cover;
    object-position: center;
    box-shadow: none !important;
    transition: transform 0.45s ease;
}

.dt-product-image:hover img {
    transform: scale(1.035);
}

.dt-product-copy {
    padding: 8px 10px 8px 0;
}

.dt-product-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin: 0 0 14px;
    padding: 0 12px;
    border: 1px solid rgba(13, 123, 130, 0.18);
    border-radius: 999px;
    color: var(--dt-teal-dark) !important;
    background: rgba(13, 123, 130, 0.08);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
}

.dt-product-copy h2 {
    margin: 0 0 16px !important;
    color: var(--dt-ink) !important;
    font-size: clamp(28px, 3vw, 42px) !important;
}

.dt-product-price {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin: 20px 0 0;
    padding: 0 18px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--dt-teal-dark), var(--dt-teal));
    box-shadow: 0 14px 30px rgba(13, 123, 130, 0.2);
    font-size: 18px;
    font-weight: 900;
}

.related-products-section {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.related-products-heading {
    margin: 0 0 32px;
    text-align: center;
}

.related-products-heading h2 {
    margin: 0;
    color: #fff;
    font-size: 40px;
    text-shadow: 0 16px 40px rgba(4, 24, 29, 0.34);
}

.related-products-grid {
    margin-top: 0;
}

.content-section--story .related-products-section {
    margin-top: 56px;
}

.story-page .dt-product-price {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-user-select: none;
    user-select: none;
}

.story-page .dt-product-price:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(13, 123, 130, 0.28);
}

.dt-product-description p:last-child {
    margin-bottom: 0;
}

.dt-product-preview {
    display: grid;
    gap: 12px;
}

.dt-product-preview__image {
    display: none;
}

.dt-product-preview__price {
    display: inline-flex;
    margin: 0 0 8px;
    color: var(--dt-teal-dark);
    font-weight: 900;
}

.dt-product-preview__body p {
    margin: 0;
}

.dt-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(3, 18, 22, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.dt-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.dt-lightbox img {
    display: block;
    max-width: min(96vw, 1440px);
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
}

.dt-lightbox__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

body.dt-lightbox-open {
    overflow: hidden;
}

.story-actions {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--dt-line);
}

.product-request-box {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    margin: 34px 0 0;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(129, 216, 208, 0.28);
    border-radius: 8px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(7, 26, 31, 0.98), rgba(13, 76, 80, 0.94)),
        radial-gradient(circle at 18% 0%, rgba(147, 205, 44, 0.18), transparent 34%);
    box-shadow: 0 28px 80px rgba(5, 18, 22, 0.28);
}

.product-request-box::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.2;
    background-image:
        linear-gradient(30deg, transparent 43%, rgba(255, 255, 255, 0.16) 44%, rgba(255, 255, 255, 0.16) 46%, transparent 47%),
        linear-gradient(150deg, transparent 43%, rgba(255, 255, 255, 0.12) 44%, rgba(255, 255, 255, 0.12) 46%, transparent 47%);
    background-size: 38px 38px;
}

.product-request-box__copy,
.product-request-box__actions {
    position: relative;
    z-index: 1;
}

.product-request-box .eyebrow {
    color: rgba(191, 247, 239, 0.84);
}

.product-request-box h2 {
    margin: 0 0 10px !important;
    color: #fff !important;
    font-size: clamp(26px, 3vw, 38px) !important;
}

.product-request-box p {
    max-width: 620px;
    margin: 0;
    color: rgba(235, 255, 252, 0.82);
}

.product-request-box__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.product-request-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.product-request-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.product-request-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 18, 22, 0.82);
    backdrop-filter: blur(10px);
}

.product-request-modal__dialog {
    position: relative;
    width: min(760px, 100%);
    max-height: min(92vh, 900px);
    overflow: auto;
    padding: 30px;
    border: 1px solid rgba(129, 216, 208, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(247, 251, 249, 0.98), rgba(231, 245, 241, 0.98));
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.42);
}

.product-request-modal__dialog h2 {
    margin: 0 0 8px !important;
    color: var(--dt-ink) !important;
    font-size: clamp(28px, 4vw, 42px) !important;
}

.product-request-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(16, 33, 38, 0.12);
    border-radius: 999px;
    color: var(--dt-ink);
    background: rgba(255, 255, 255, 0.72);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.product-request-modal__product {
    margin: 0 0 18px;
    color: var(--dt-ink-soft);
    font-weight: 800;
}

.product-request-form {
    display: grid;
    gap: 16px;
}

.product-request-hp {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.product-request-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

/* Compact request form: one chosen contact method keeps the path to conversion short. */
.product-contact-picker {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.product-contact-option {
    display: grid;
    place-items: center;
    gap: 6px;
    min-height: 84px;
    border: 1px solid rgba(16, 33, 38, 0.12);
    border-radius: 10px;
    color: var(--dt-ink);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 248, 246, 0.8));
    box-shadow: 0 10px 24px rgba(9, 43, 48, 0.07);
    font: inherit;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.product-contact-option span {
    font-size: 24px;
    line-height: 1;
}

.product-contact-option strong {
    font-size: 13px;
    font-weight: 900;
}

.product-contact-option:hover {
    transform: translateY(-2px);
    border-color: rgba(13, 123, 130, 0.35);
    box-shadow: 0 16px 30px rgba(9, 43, 48, 0.12);
}

.product-contact-option.is-active {
    color: #fff;
    border-color: rgba(55, 203, 185, 0.52);
    background:
        linear-gradient(145deg, rgba(8, 92, 97, 0.98), rgba(14, 139, 129, 0.94));
    box-shadow: 0 18px 36px rgba(4, 93, 90, 0.2);
}

.product-request-contact-fields label:not(.is-active) {
    display: none;
}

.product-request-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-request-suggestions button {
    border-style: dashed;
    cursor: pointer;
    font-family: inherit;
}

.product-request-suggestions button:hover {
    color: #fff;
    border-color: rgba(13, 123, 130, 0.48);
    background: rgba(13, 123, 130, 0.78);
}

.product-request-form label {
    display: block;
    margin: 0;
    color: var(--dt-ink);
    font-size: 13px;
    font-weight: 900;
}

.product-request-form label span {
    color: #d84c3f;
}

.product-request-form input,
.product-request-form textarea {
    width: 100%;
    min-height: 48px;
    margin-top: 7px;
    border: 1px solid rgba(16, 33, 38, 0.14);
    border-radius: 8px;
    color: var(--dt-ink);
    background: rgba(255, 255, 255, 0.88);
    font: inherit;
    font-weight: 600;
    outline: none;
    padding: 12px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-request-form textarea {
    min-height: 132px;
    resize: vertical;
}

.product-request-form input:focus,
.product-request-form textarea:focus {
    border-color: rgba(13, 123, 130, 0.55);
    box-shadow: 0 0 0 4px rgba(13, 123, 130, 0.12);
}

.product-request-comment {
    grid-column: 1 / -1;
}

.product-request-help {
    margin: 0;
    color: var(--dt-ink-soft);
    font-size: 13px;
}

.product-request-message {
    display: none;
    border-radius: 8px;
    font-weight: 800;
    padding: 12px 14px;
}

.product-request-message.is-error {
    display: block;
    color: #7f1d1d;
    background: #ffe7e7;
}

.product-request-message.is-ok {
    display: block;
    color: #0f5f45;
    background: #ddf7eb;
}

.product-request-submit {
    justify-self: start;
}

body.product-request-opened {
    overflow: hidden;
}

.comment-order-hint {
    margin: 0 0 18px;
    padding: 16px 18px;
    border: 1px solid rgba(13, 123, 130, 0.18);
    border-radius: 8px;
    color: var(--dt-ink);
    background: rgba(13, 123, 130, 0.08);
    font-weight: 800;
    line-height: 1.5;
}

.comments-section,
.add-comment {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid var(--dt-line);
}

.comments-section h2,
.add-comment h2 {
    font-size: 22px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--dt-lime);
    font-family: "FontAwesome";
}

.about-layout {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
    align-items: center;
}

.about-media {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--dt-soft-shadow);
}

.about-media img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.pricing-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
    min-height: 260px;
    padding: 28px;
}

.price-card--featured {
    border-color: rgba(13, 123, 130, 0.32);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(233, 247, 244, 0.92));
}

.price-card strong {
    display: block;
    margin-top: 22px;
    color: var(--dt-ink);
    font-size: 24px;
    font-weight: 800;
}

.static-page table {
    width: 100%;
    margin: 26px 0 0;
    border-collapse: collapse;
    color: var(--dt-ink-soft);
    overflow: hidden;
    border-radius: 8px;
}

.static-page th,
.static-page td {
    padding: 15px 16px;
    border: 1px solid var(--dt-line);
    vertical-align: top;
}

.static-page th {
    color: var(--dt-ink);
    background: rgba(13, 123, 130, 0.08);
}

/* Contact */
.contact-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.contact-form-area,
.contact-panel {
    padding: 34px;
}

.contact-form-area h2,
.contact-panel h2 {
    margin-bottom: 24px;
    font-size: 30px;
}

.contact-form-area .form-group {
    position: relative;
    margin: 0 0 18px;
}

.contact-form-area .icon {
    position: absolute;
    top: 14px;
    right: 15px;
    z-index: 1;
    color: var(--dt-teal);
}

.contact-form-area input,
.contact-form-area textarea,
.contact-form-area select,
.form input,
.form textarea,
.form select {
    width: 100%;
    min-height: 52px;
    padding: 13px 46px 13px 16px;
    border: 1px solid var(--dt-line);
    border-radius: 8px;
    color: var(--dt-ink);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
    outline: none;
}

.contact-form-area textarea,
.form textarea {
    min-height: 152px;
    resize: vertical;
}

.contact-form-area input:focus,
.contact-form-area textarea:focus,
.contact-form-area select:focus,
.form input:focus,
.form textarea:focus,
.form select:focus {
    border-color: rgba(13, 123, 130, 0.45);
    box-shadow: 0 0 0 4px rgba(13, 123, 130, 0.08);
}

.contact-method {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid var(--dt-line);
}

.contact-method i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--dt-teal), var(--dt-lime));
}

.contact-method strong {
    display: block;
    color: var(--dt-ink);
    font-weight: 800;
}

.contact-method a {
    color: var(--dt-teal-dark) !important;
    font-weight: 800;
}

.contact-social {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.contact-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 12px;
    border: 1px solid var(--dt-line);
    border-radius: 8px;
    color: var(--dt-ink) !important;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.65);
}

.contact-social img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

/* Footer */
.site-footer {
    color: rgba(255, 255, 255, 0.82);
    background:
        linear-gradient(135deg, rgba(16, 33, 38, 0.98), rgba(8, 75, 82, 0.94)),
        url("../images/map.png") center / auto repeat;
}

.footer-layout {
    grid-template-columns: 1.2fr 0.7fr 0.8fr 1fr;
    padding-top: 56px;
    padding-bottom: 38px;
}

.footer-logo img {
    width: 210px;
    height: auto;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
}

.footer-brand p,
.footer-col p,
.footer-bottom p {
    color: rgba(255, 255, 255, 0.78);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.footer-col h3 {
    margin-bottom: 18px;
    color: #fff;
    font-size: 18px;
}

.footer-col ul {
    display: grid;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.footer-col li {
    list-style: none;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 14px;
    font-weight: 700;
}

.footer-col a:hover {
    color: #fff !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 15px 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
}

/* DLE and legacy cleanup */
.breadcrumbs,
.blog-layout,
.section-space,
.news-area,
.archive,
.module-block,
.blog-single,
.col-lg-8 {
    background: transparent !important;
}

.slicknav_menu,
.mobile-nav {
    display: none !important;
}

.comment-block {
    display: block;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--dt-line);
}

.comment-block,
.comment-block * {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
}

.comment-content {
    overflow-wrap: anywhere;
}

.comm-action-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    white-space: normal;
}

.btn-delete {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 0 0 auto;
}

.image-avatar {
    float: left;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
}

.image-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-text {
    margin-left: 70px;
}

.user-nick {
    color: var(--dt-teal-dark);
    font-weight: 800;
}

.mass_comments_action {
    display: none;
}

.quote,
blockquote {
    margin: 20px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--dt-teal);
    border-radius: 8px;
    color: var(--dt-ink-soft);
    background: rgba(13, 123, 130, 0.08);
}

.dle-alert,
.berrors,
.ui-dialog,
.pm_status {
    border-radius: 8px !important;
}

/* Responsive */
@media (max-width: 1199px) {
    .main-header__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 14px;
        padding: 14px 0 18px;
    }

    .header-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .hero-copy,
    .hero-copy h1,
    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        min-height: 280px;
    }

    .hero-product {
        width: 100% !important;
        max-width: 560px !important;
    }

    .news-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .solution-grid,
    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 991px) {
    .top-strip__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .premium-hero.hero-slider {
        min-height: auto !important;
        padding: 34px 0 18px;
    }

    .hero-copy h1 {
        font-size: 42px !important;
    }

    .section-heading h2,
    .home-services h2,
    .home-process h2,
    .home-materials h2,
    .home-cta h2,
    .page-hero h1,
    .story-header h1 {
        font-size: 34px;
    }

    .services-grid,
    .pricing-layout,
    .footer-layout,
    .process-steps,
    .material-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-layout,
    .materials-layout,
    .about-layout,
    .contact-layout,
    .static-grid,
    .home-cta .cta-layout {
        grid-template-columns: 1fr;
    }

    .process-copy {
        position: static;
    }

    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dt-product-story {
        grid-template-columns: 1fr;
    }

    .profile-hero,
    .profile-grid,
    .profile-edit-grid {
        grid-template-columns: 1fr;
    }

    .profile-actions {
        justify-content: flex-start;
    }

    .dt-product-copy {
        padding: 0;
    }

    .product-request-box {
        grid-template-columns: 1fr;
    }

    .product-request-box__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    body.dt-page {
        font-size: 15px;
        background-attachment: scroll;
    }

    .top-strip__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: start;
        gap: 4px 8px;
        padding: 6px 15px;
    }

    .top-strip__item {
        justify-content: flex-start;
        font-size: 12px;
    }

    .main-header__inner {
        position: relative;
        z-index: 1;
        gap: 12px;
        min-height: auto;
        padding: 12px 0;
    }

    .main-header {
        border-bottom-color: rgba(255, 255, 255, 0.14);
        background:
            linear-gradient(135deg, rgba(7, 28, 34, 0.95), rgba(10, 56, 62, 0.9)) !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 16px 34px rgba(4, 24, 29, 0.24);
    }

    .main-header::before {
        display: block;
        position: absolute;
        right: -72px;
        bottom: -58px;
        width: 260px;
        height: 170px;
        pointer-events: none;
        opacity: 0.18;
        background: url("../images/showcase-logo-sculpture-cutout.png") center / contain no-repeat;
        filter: drop-shadow(0 18px 28px rgba(4, 24, 29, 0.34));
    }

    .brand img {
        width: 62px !important;
        height: 50px !important;
    }

    .brand-copy strong {
        color: #fff;
        font-size: 18px;
    }

    .brand-copy small {
        color: rgba(229, 245, 241, 0.74);
        font-size: 11px;
    }

    .nav-menu {
        gap: 4px;
    }

    .nav-menu a {
        min-height: 34px;
        padding: 0 9px;
        color: #fff !important;
        font-size: 13px !important;
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-menu a:hover {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.16);
    }

    .icon-link {
        width: 36px;
        height: 36px;
    }

    .header-cta {
        width: 100%;
        max-width: 260px;
        min-height: 42px;
    }

    .premium-hero.hero-slider {
        padding: 24px 0 4px;
    }

    .hero-copy h1 {
        font-size: 28px !important;
    }

    .hero-lead,
    .page-hero p:last-child {
        font-size: 16px;
    }

    .hero-actions {
        margin-top: 18px;
        gap: 10px;
    }

    .hero-actions .primary-btn,
    .hero-actions .secondary-btn {
        min-height: 42px;
        padding: 0 16px;
        font-size: 14px;
    }

    .hero-visual {
        width: 100vw;
        margin-top: -28px;
        margin-right: calc(50% - 50vw);
        margin-bottom: -38px;
        margin-left: calc(50% - 50vw);
        min-height: clamp(160px, 42vw, 240px);
    }

    .hero-product {
        width: 92vw !important;
        max-width: none !important;
        margin-top: -34px !important;
        margin-bottom: -74px !important;
    }

    .catalog-section,
    .home-services,
    .home-process,
    .home-materials,
    .interior-solutions,
    .content-section,
    .about-premium {
        padding: 44px 0;
    }

    .catalog-section {
        padding-top: 12px;
    }

    .page-hero {
        padding: 28px 0 18px;
    }

    .page-hero--compact {
        padding: 24px 0 12px;
    }

    .page-hero + .content-section,
    .static-content-section {
        padding-top: 20px;
    }

    .page-hero--compact + .content-section {
        padding-top: 18px;
    }

    .section-heading {
        margin-bottom: 28px;
        text-align: left;
    }

    .section-heading--center {
        text-align: left;
    }

    .section-heading--center .eyebrow {
        justify-content: flex-start;
    }

    .section-heading h2,
    .home-services h2,
    .home-process h2,
    .home-materials h2,
    .home-cta h2,
    .page-hero h1,
    .story-header h1 {
        font-size: 28px;
    }

    .services-grid,
    .solution-grid,
    .trust-grid,
    .process-steps,
    .material-list,
    .pricing-layout,
    .footer-layout {
        grid-template-columns: 1fr;
    }

    .story-page,
    .static-page,
    .contact-form-area,
    .contact-panel,
    .profile-hero,
    .profile-card {
        padding: 24px;
    }

    .static-page--legacy {
        overflow: visible !important;
        padding: 22px !important;
    }

    .static-page,
    .static-text,
    .static-page *,
    .static-text * {
        min-width: 0 !important;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .static-page a,
    .static-text a {
        overflow-wrap: anywhere;
    }

    .static-rich {
        gap: 16px;
    }

    .static-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .static-grid div,
    .static-note,
    .static-text blockquote {
        padding: 16px !important;
    }

    .static-rich h2 {
        font-size: 25px !important;
        line-height: 1.18;
    }

    .static-rich p,
    .static-grid span,
    .static-note span,
    .static-page p,
    .static-text p,
    .static-page li,
    .static-text li {
        font-size: 15px !important;
        line-height: 1.6;
    }

    .profile-info-list div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .dt-product-story {
        gap: 18px;
        padding: 12px;
    }

    .dt-product-gallery {
        grid-template-columns: 1fr;
    }

    .dt-product-image:first-child {
        grid-column: auto;
        aspect-ratio: 1 / 1;
    }

    .dt-product-copy h2 {
        font-size: 26px !important;
    }

    .dt-product-price {
        min-height: 40px;
        padding: 0 14px;
        font-size: 16px;
    }

    .product-request-box {
        padding: 22px;
    }

    .product-request-box__actions,
    .product-request-box__actions .primary-btn,
    .product-request-box__actions .secondary-btn,
    .product-request-submit {
        width: 100%;
    }

    .product-request-modal {
        padding: 10px;
    }

    .product-request-modal__dialog {
        padding: 24px 18px;
    }

    .product-request-grid {
        grid-template-columns: 1fr;
    }

    .product-contact-picker {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .product-contact-option {
        min-height: 68px;
    }

    .footer-bottom {
        display: grid;
    }

    .footer-logo img {
        width: 168px;
    }

    .comment-block {
        padding: 14px !important;
    }

    .comment-layout {
        gap: 12px !important;
    }

    .comment-meta {
        display: grid !important;
        gap: 4px !important;
        justify-content: start !important;
        align-items: start !important;
    }

    .comment-actions {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
        gap: 10px !important;
    }

    .comment-reply-actions,
    .comment-tool-actions {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .comment-tool-actions {
        margin-left: auto;
        justify-content: flex-end !important;
    }

    .comment-tool-actions .btn-delete {
        display: inline-flex !important;
        min-width: 72px;
    }
}

@media (max-width: 620px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .print-card__actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .primary-btn,
    .secondary-btn,
    .text-link,
    .news-button .btn {
        width: 100%;
        white-space: normal;
    }

    .hero-actions,
    .story-actions,
    .button-row {
        width: 100%;
    }

    .comment-actions {
        display: grid !important;
        grid-template-columns: 1fr;
    }

    .comment-tool-actions {
        margin-left: 0;
        justify-content: flex-start !important;
    }

    .page-hero {
        padding: 28px 0 18px;
    }

    .page-hero--compact {
        padding: 24px 0 12px;
    }

    .static-page--legacy {
        padding: 16px !important;
    }

    .static-rich h2 {
        font-size: 23px !important;
    }
}
