:root {
    --dency-bg: #f3efe8;
    --dency-bg-dark: #0c0c0c;
    --dency-text: #111111;
    --dency-muted: #5c5c5c;
    --dency-accent: #fe1616;
    --dency-accent-soft: #ffe5e5;
    --dency-border: rgba(17, 17, 17, 0.12);
    --dency-radius: 1rem;
    --dency-font-display: "Hanley Pro", sans-serif;
    --dency-font-body: "Hanley Pro", sans-serif;
    --dency-container: 1200px;
    --dency-nav-h: 5rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body.dency-theme {
    margin: 0;
    font-family: var(--dency-font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dency-text);
    background: var(--dency-bg);
    -webkit-font-smoothing: antialiased;
}

.dency-theme a {
    color: inherit;
    text-decoration: none;
}

.dency-theme img {
    max-width: 100%;
    height: auto;
    display: block;
}

.dency-wrap {
    overflow-x: hidden;
}

.dency-container {
    width: min(100% - 2.5rem, var(--dency-container));
    margin-inline: auto;
}

/* Nav */
.dency-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(243, 239, 232, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--dency-border);
}

.dency-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--dency-nav-h);
    gap: 1.5rem;
}

.dency-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.dency-logo img {
    height: auto;
    border-radius: 0.25rem;
}

.dency-logo .dency-logo__full {
    display: block;
    max-height: 3.85rem;
    width: auto;
    max-width: min(56vw, 17.5rem);
}

.dency-logo .dency-logo__mark {
    display: none;
    max-height: 3.35rem;
    max-width: 3.35rem;
    width: auto;
}

.dency-nav__links {
    display: none;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.dency-nav__links a:hover,
.dency-nav__links a.is-active {
    color: var(--dency-accent);
}

.dency-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dency-nav__phone,
.dency-nav__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--dency-border);
    color: var(--dency-text);
    font-size: 0.95rem;
}
.dency-nav__phone:hover,
.dency-nav__social:hover {
    border-color: var(--dency-accent);
    color: var(--dency-accent);
}

.dency-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid var(--dency-text);
    background: var(--dency-text);
    color: #fff;
    transition: transform 0.2s, background 0.2s, color 0.2s;
    cursor: pointer;
}

.dency-btn:hover {
    transform: translateY(-2px);
    background: transparent;
    color: var(--dency-text);
}

.dency-btn--outline {
    background: transparent;
    color: var(--dency-text);
}

.dency-btn--outline:hover {
    background: var(--dency-text);
    color: #fff;
}

.dency-btn--accent {
    background: var(--dency-accent);
    border-color: var(--dency-accent);
    color: #fff;
}

.dency-btn--accent:hover {
    background: transparent;
    color: var(--dency-accent);
}

.dency-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.dency-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dency-text);
}

@media (min-width: 992px) {
    .dency-nav__links {
        display: flex;
    }
    .dency-menu-toggle {
        display: none;
    }
}

/* Hero */
.dency-hero {
    padding: 4rem 0 3rem;
}

.dency-hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dency-muted);
    margin-bottom: 1.5rem;
}

.dency-hero__title {
    font-family: var(--dency-font-display);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 0.95;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin: 0 0 2rem;
    max-width: 14ch;
}

.dency-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.dency-hero__lead {
    max-width: 36rem;
    color: var(--dency-muted);
    font-size: 1.05rem;
    margin: 0;
}

.dency-marquee {
    overflow: hidden;
    border-block: 1px solid var(--dency-border);
    padding: 1rem 0;
    margin-top: 3rem;
    background: #fff;
}

.dency-marquee__track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: dency-marquee 35s linear infinite;
    font-family: var(--dency-font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.dency-marquee__track span {
    white-space: nowrap;
    opacity: 0.7;
}

@keyframes dency-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Sections */
.dency-section {
    padding: 5rem 0;
}

.dency-section--dark {
    background: var(--dency-bg-dark);
    color: #f5f5f5;
}

.dency-section__meta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--dency-accent);
    margin-bottom: 0.75rem;
}

.dency-section--dark .dency-section__meta {
    color: var(--dency-accent);
}

.dency-section__title {
    font-family: var(--dency-font-display);
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem;
    max-width: 20ch;
}

.dency-section__intro {
    color: var(--dency-muted);
    max-width: 40rem;
    margin-bottom: 2.5rem;
}

.dency-section--dark .dency-section__intro {
    color: rgba(255, 255, 255, 0.65);
}

.dency-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .dency-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dency-stat__value {
    font-family: var(--dency-font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
}

.dency-stat__label {
    font-size: 0.85rem;
    color: var(--dency-muted);
    margin-top: 0.5rem;
}

/* Work / product grid */
.dency-work-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .dency-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dency-work-card {
    position: relative;
    border-radius: var(--dency-radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--dency-border);
    transition: transform 0.25s;
}

.dency-work-card:hover {
    transform: translateY(-4px);
}

.dency-work-card__img {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

.dency-work-card__body {
    padding: 1.5rem;
}

.dency-work-card__tags {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dency-muted);
    margin-bottom: 0.5rem;
}

.dency-work-card__title {
    font-family: var(--dency-font-display);
    font-size: 1.35rem;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

/* Product cards (catalog) */
.dency-product-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .dency-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .dency-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dency-product-card {
    background: #fff;
    border: 1px solid var(--dency-border);
    border-radius: var(--dency-radius);
    overflow: hidden;
}

.dency-product-card__media {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
}

.dency-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dency-product-card__badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: var(--dency-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
}

.dency-product-card__badge--sale {
    top: 1rem;
    bottom: auto;
    background: #111;
}

.dency-product-card__price s,
.product-price-was {
    opacity: 0.55;
    margin-right: 0.35rem;
}

.dency-product-card__content {
    padding: 1.5rem;
}

.dency-product-card__content h3 {
    font-family: var(--dency-font-display);
    font-size: 1.15rem;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.dency-product-card select,
.dency-product-card .form-select {
    width: 100%;
    padding: 0.65rem;
    border-radius: 0.5rem;
    border: 1px solid var(--dency-border);
    margin-bottom: 0.75rem;
    font-family: inherit;
}

.dency-product-card__price {
    font-family: var(--dency-font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.dency-product-details {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--dency-border);
}

.dency-product-details__lead {
    margin: 0 0 0.85rem;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--dency-muted);
}

.dency-product-details__spec-title {
    margin: 0.65rem 0 0.4rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dency-text);
}

.dency-product-details__list {
    margin: 0 0 0.5rem;
    padding-left: 1.2rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--dency-text);
}

.dency-product-details__list li {
    margin-bottom: 0.3rem;
}

.dency-product-details__list li:last-child {
    margin-bottom: 0;
}

.dency-product-extras {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--dency-border);
}

.dency-product-extras__title {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--dency-muted);
}

.dency-product-extras__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dency-product-extra {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--dency-border);
    border-radius: 0.5rem;
    background: #fafafa;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.35;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.dency-product-extra:hover {
    border-color: rgba(254, 22, 22, 0.4);
    background: #fff;
}

.dency-product-extra:has(input:checked) {
    border-color: var(--dency-accent);
    background: rgba(254, 22, 22, 0.06);
    box-shadow: 0 0 0 1px rgba(254, 22, 22, 0.12);
}

.dency-product-extra input.product-extra {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.dency-product-extra__box {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.1rem;
    border: 2px solid #c8c4bc;
    border-radius: 0.25rem;
    background: #fff;
    position: relative;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.dency-product-extra:has(input:checked) .dency-product-extra__box {
    border-color: var(--dency-accent);
    background: var(--dency-accent);
}

.dency-product-extra:has(input:checked) .dency-product-extra__box::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 42%;
    width: 0.3rem;
    height: 0.55rem;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.dency-product-extra__text {
    flex: 1;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    column-gap: 0.75rem;
    row-gap: 0.15rem;
}

.dency-product-extra__name {
    min-width: 0;
    word-break: break-word;
}

.dency-product-extra__price {
    font-family: var(--dency-font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dency-accent);
    white-space: nowrap;
    text-align: right;
}

/* Services list */
.dency-services {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--dency-border);
}

.dency-service-row {
    display: grid;
    gap: 1rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--dency-border);
    align-items: start;
}

@media (min-width: 768px) {
    .dency-service-row {
        grid-template-columns: auto 1fr auto;
        gap: 2rem;
    }
}

.dency-service-row__num {
    font-family: var(--dency-font-display);
    font-size: 0.85rem;
    color: var(--dency-muted);
}

.dency-service-row h3 {
    font-family: var(--dency-font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin: 0;
}

/* Page header */
.dency-page-hero {
    padding: 6rem 0 3rem;
    border-bottom: 1px solid var(--dency-border);
}

.dency-page-hero h1 {
    font-family: var(--dency-font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-transform: uppercase;
    margin: 0 0 1rem;
    line-height: 1;
}

.dency-breadcrumb {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dency-muted);
}

.dency-breadcrumb a:hover {
    color: var(--dency-accent);
}

/* CTA */
.dency-cta {
    padding: 5rem 0;
    text-align: center;
    background: var(--dency-bg-dark);
    color: #fff;
}

.dency-cta h2 {
    font-family: var(--dency-font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    margin: 0 0 1.5rem;
}

.dency-cta p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 32rem;
    margin: 0 auto 2rem;
}

/* Footer */
.dency-site-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
    gap: 0.65rem;
}

.dency-site-gallery__item {
    display: block;
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 1;
    background: #ddd;
    cursor: zoom-in;
    border: none;
    padding: 0;
    font: inherit;
    text-align: left;
    width: 100%;
}

.dency-site-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s;
}

.dency-site-gallery__item:hover img {
    transform: scale(1.04);
}

@media (min-width: 768px) {
    .dency-site-gallery {
        grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
        gap: 0.85rem;
    }
}

.dency-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.92);
}
.dency-lightbox[hidden] {
    display: none !important;
}
body.dency-lightbox-open {
    overflow: hidden;
}
.dency-lightbox__figure {
    margin: 0;
    max-width: min(96vw, 1200px);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.dency-lightbox__img {
    max-width: 100%;
    max-height: calc(90vh - 3rem);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0.35rem;
}
.dency-lightbox__caption {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}
.dency-lightbox__close,
.dency-lightbox__nav {
    position: absolute;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.dency-lightbox__close:hover,
.dency-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.22);
}
.dency-lightbox__close {
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
}
.dency-lightbox__nav--prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}
.dency-lightbox__nav--next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}
.dency-lightbox__nav:disabled {
    opacity: 0.25;
    cursor: default;
}

.dency-footer {
    background: #fff;
    border-top: 1px solid var(--dency-border);
}

.dency-footer__grid {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .dency-footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.dency-footer__logo {
    display: block;
    max-width: 16.5rem;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
}

.dency-footer h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 1rem;
}

.dency-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dency-footer li {
    margin-bottom: 0.5rem;
}

.dency-footer a:hover {
    color: var(--dency-accent);
}

.dency-footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--dency-border);
    font-size: 0.85rem;
    color: var(--dency-muted);
}

.dency-prose {
    max-width: 48rem;
}

.dency-prose p {
    color: var(--dency-muted);
}

.d-none { display: none !important; }

@media (min-width: 768px) {
    .d-md-inline-flex { display: inline-flex !important; }
}

.text-accent { color: var(--dency-accent); }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* Top bar */
.dency-topbar {
    background: var(--dency-bg-dark);
    color: #eee;
    font-size: 0.8rem;
}

.dency-promo-bar {
    background: var(--dency-accent);
    color: #fff;
    text-align: center;
    font-size: 0.8rem;
    padding: 0.45rem 0;
}

.dency-promo-bar strong {
    margin-right: 0.5rem;
}
.dency-topbar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}
.dency-topbar__social a { margin-left: 0.75rem; }

/* Services ribbon (marketing banner) */
.dency-site-top {
    position: relative;
    z-index: 60;
}
.dency-services-icon-strip {
    background: #fff;
    padding: 2rem 0;
    border-top: 1px solid var(--dency-border);
    border-bottom: 1px solid var(--dency-border);
}
.dency-services-icon-strip .dency-services-ribbon__grid {
    border: 1px solid rgba(254, 22, 22, 0.2);
    border-radius: 0.35rem;
    overflow: hidden;
}
/* legacy block name — contact + trust at top */
.dency-services-ribbon {
    border-bottom: none;
}
.dency-services-ribbon__strip {
    background: var(--dency-bg-dark);
    color: #fff;
    font-size: 0.85rem;
}
.dency-services-ribbon__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 2rem;
    justify-content: center;
    padding: 0.65rem 0;
}
.dency-services-ribbon__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 600;
}
.dency-services-ribbon__contact-item:hover { color: var(--dency-accent); }
.dency-services-ribbon__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--dency-accent);
    font-size: 0.75rem;
}
.dency-services-ribbon__grid-wrap {
    background: #fff;
    padding: 1.25rem 0;
}
.dency-services-ribbon__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 640px) {
    .dency-services-ribbon__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
    .dency-services-ribbon__grid { grid-template-columns: repeat(7, minmax(0, 1fr)); }
}
.dency-services-ribbon__grid > li {
    border-right: 1px solid rgba(254, 22, 22, 0.35);
    border-bottom: 1px solid rgba(254, 22, 22, 0.2);
}
@media (min-width: 1100px) {
    .dency-services-ribbon__grid > li { border-bottom: none; }
    .dency-services-ribbon__grid > li:last-child { border-right: none; }
}
.dency-services-ribbon__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.65rem;
    padding: 1rem 0.5rem;
    min-height: 100%;
    text-align: center;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.25;
    color: var(--dency-text);
}
.dency-services-ribbon__item i {
    font-size: 1.75rem;
    color: var(--dency-accent);
}
.dency-services-ribbon__item:hover { color: var(--dency-accent); }
.dency-services-ribbon__item.is-active,
.dency-services-ribbon__item.is-active span {
    color: var(--dency-accent);
}
.dency-services-ribbon__trust {
    background: linear-gradient(90deg, #c40f0f, var(--dency-accent));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.dency-services-ribbon__trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.55rem 0;
    text-align: center;
}
.dency-services-ribbon__trust-inner p { margin: 0; }
.dency-services-ribbon__trust-inner i { font-size: 1.1rem; opacity: 0.95; }

/* UK accreditation badges */
.dency-certificates {
    margin: 1.5rem 0;
}
.dency-certificates__heading {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dency-muted);
    margin: 0 0 0.75rem;
}
.dency-footer .dency-certificates__heading {
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}
.dency-certificates__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    align-items: center;
}
.dency-footer .dency-certificates__list {
    justify-content: center;
    padding: 1.5rem 0 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 1.5rem;
}
.dency-certificates__list a {
    display: block;
    line-height: 0;
    transition: transform 0.2s, opacity 0.2s;
}
.dency-certificates__list a:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}
.dency-certificates__list img {
    height: 4.25rem;
    width: auto;
    max-width: 11rem;
    object-fit: contain;
    background: #fff;
    border-radius: 0.35rem;
    padding: 0.4rem 0.55rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.dency-footer .dency-certificates__list img {
    height: 3.5rem;
    max-width: 9rem;
}
.dency-certificates--compact {
    margin: 0;
}

/* Desktop nav links */
.dency-nav__desktop {
    display: none;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.dency-nav__desktop a.is-active,
.dency-nav__desktop .is-active { color: var(--dency-accent); }

.dency-dropdown { position: relative; }
.dency-dropdown__toggle {
    background: none;
    border: none;
    font: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    cursor: pointer;
    padding: 0;
    color: inherit;
}
.dency-dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 12rem;
    background: #fff;
    border: 1px solid var(--dency-border);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    z-index: 50;
}
.dency-dropdown__menu a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
}
.dency-dropdown:hover .dency-dropdown__menu { display: block; }
.dency-dropdown.is-open .dency-dropdown__menu { display: block; }

.dency-mobile-label {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dency-muted);
}

@media (min-width: 992px) {
    .dency-nav__desktop { display: flex; }
}

/* Carousel */
.dency-carousel {
    position: relative;
    min-height: 70vh;
    background: var(--dency-bg-dark);
    color: #fff;
}
.dency-carousel__slide {
    display: none;
    min-height: 70vh;
    background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.55)), var(--slide-image);
    background-size: cover;
    background-position: center;
    align-items: flex-end;
    padding: 4rem 0 5rem;
}
.dency-carousel__slide.is-active { display: flex; }
.dency-btn--on-dark {
    border-color: #fff;
    color: #fff;
    background: transparent;
}
.dency-btn--on-dark:hover { background: #fff; color: var(--dency-text); }
.dency-carousel__prev,
.dency-carousel__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
}
.dency-carousel__prev { left: 1rem; }
.dency-carousel__next { right: 1rem; }

/* About */
.dency-about {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 900px) {
    .dency-about { grid-template-columns: 1fr 1fr; }
}
.dency-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.dency-about__grid img { border-radius: var(--dency-radius); width: 100%; }

.dency-section--tight { padding-top: 2rem; padding-bottom: 2rem; }
.elfsight-widget { min-height: 120px; }
.elfsight-facebook-wrap { min-height: 280px; }

/* Spotlight cards */
.dency-spotlight-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 900px) {
    .dency-spotlight-grid { grid-template-columns: repeat(3, 1fr); }
}
.dency-spotlight-card {
    background: #fff;
    border: 1px solid var(--dency-border);
    border-radius: var(--dency-radius);
    overflow: hidden;
}
.dency-spotlight-card__media {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
}
.dency-spotlight-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dency-spotlight-card__body { padding: 1.5rem; }
.dency-spotlight-card__body h3 {
    font-family: var(--dency-font-display);
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}
.dency-spotlight-card__meta { font-size: 0.85rem; color: var(--dency-muted); }

/* Service grid */
.dency-service-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.dency-service-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--dency-radius);
    padding: 1.5rem;
    transition: transform 0.2s;
}
.dency-service-card:hover { transform: translateY(-3px); }
.dency-service-card i {
    font-size: 1.5rem;
    color: var(--dency-accent);
    margin-bottom: 1rem;
}
.dency-service-card h3 {
    font-family: var(--dency-font-display);
    text-transform: uppercase;
    font-size: 1rem;
    margin: 0 0 0.5rem;
}
.dency-service-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0; }

.dency-service-grid--light {
    gap: 1.25rem;
}
.dency-service-card--light {
    background: #fff;
    border: 1px solid var(--dency-border);
    color: var(--dency-text);
    display: flex;
    flex-direction: column;
}
.dency-service-card--light p {
    color: var(--dency-muted);
    flex: 1;
}
.dency-service-card__link {
    margin-top: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dency-accent);
}
.dency-service-page-cta {
    padding: 1.5rem;
    border: 1px solid var(--dency-border);
    border-radius: var(--dency-radius);
    background: rgba(254, 22, 22, 0.04);
}
.dency-service-page-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}
.dency-service-page-related__list {
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}
.dency-service-page-related__list a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

/* Process */
.dency-process { border-top: 1px solid var(--dency-border); }
.dency-process__step {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--dency-border);
}
.dency-process__num {
    font-family: var(--dency-font-display);
    font-weight: 700;
    color: var(--dency-accent);
}
.dency-process__step h3 {
    margin: 0 0 0.35rem;
    font-family: var(--dency-font-display);
    text-transform: uppercase;
    font-size: 1.1rem;
}
.dency-process__step p { margin: 0; color: var(--dency-muted); }

/* Testimonials / Google reviews */
.dency-reviews-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr));
    margin-top: 1.5rem;
}

.dency-review-card {
    margin: 0;
    padding: 1.35rem 1.35rem 1.15rem;
    border-radius: var(--dency-radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 100%;
}

.dency-review-card__stars {
    display: flex;
    gap: 0.2rem;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
}

.dency-review-card__stars .fa-star.is-filled {
    color: #fbbc04;
}

.dency-review-card__quote {
    margin: 0;
    flex: 1;
}

.dency-review-card__quote p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.dency-review-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dency-accent);
}

.dency-review-card__footer cite {
    font-style: normal;
}

.dency-review-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.55);
}

.dency-testimonial-slider { position: relative; min-height: 8rem; }
.dency-testimonial {
    display: none;
    max-width: 40rem;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}
.dency-testimonial.is-active { display: block; }
.dency-testimonial footer { margin-top: 1rem; font-weight: 600; color: var(--dency-accent); }
.dency-testimonial__source {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
}
.dency-google-reviews {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem 1rem;
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.dency-google-reviews:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.dency-google-reviews__brand {
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.dency-google-reviews__stars {
    display: inline-flex;
    gap: 0.15rem;
    color: rgba(255, 255, 255, 0.35);
}
.dency-google-reviews__stars .fa-star.is-filled {
    color: #fbbc04;
}
.dency-google-reviews__score {
    font-family: var(--dency-font-display);
    font-weight: 700;
    font-size: 1.1rem;
}
.dency-google-reviews__count {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}
.dency-google-reviews__cta {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dency-accent);
}
.dency-testimonial-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.dency-testimonial-dots button {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
}
.dency-testimonial-dots button.is-active { background: var(--dency-accent); }

/* FAQ */
.dency-faq-layout {
    display: grid;
    gap: 2rem;
}
@media (min-width: 900px) {
    .dency-faq-layout { grid-template-columns: 1fr 1.2fr; align-items: start; }
}
.dency-faq__item {
    border-bottom: 1px solid var(--dency-border);
    padding: 1rem 0;
}
.dency-faq__item summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}
.dency-faq__item summary::-webkit-details-marker { display: none; }
.dency-faq__item p { color: var(--dency-muted); margin: 0.75rem 0 0; }

/* Contact */
.dency-contact-grid {
    display: grid;
    gap: 2.5rem;
    text-align: left;
}
@media (min-width: 900px) {
    .dency-contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.dency-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.dency-contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.dency-contact-form input,
.dency-contact-form textarea {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font: inherit;
}
.dency-contact-success {
    background: rgba(255,255,255,0.12);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}
.dency-field-error { color: #ffb4a2; font-size: 0.85rem; }
.dency-contact-page {
    display: grid;
    gap: 2rem;
}
@media (min-width: 900px) {
    .dency-contact-page { grid-template-columns: 1fr 1fr; }
}
.dency-map {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: var(--dency-radius);
}

/* Footer marquee */
.dency-footer__marquee {
    overflow: hidden;
    border-bottom: 1px solid var(--dency-border);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}
.dency-footer__marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: dency-marquee 25s linear infinite;
    font-family: var(--dency-font-display);
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 700;
}
.dency-footer__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.dency-back-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: none;
    background: var(--dency-accent);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 90;
}
.dency-back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* ——— Mobile & touch ——— */
.dency-btn--block {
    width: 100%;
    min-height: 3rem;
}

.dency-nav__cta-desktop {
    display: none;
}

@media (min-width: 992px) {
    .dency-nav__cta-desktop {
        display: inline-flex;
    }
}

body.dency-menu-open {
    overflow: hidden;
    touch-action: none;
}

/* Top bar: tappable rows on small screens */
.dency-topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: inherit;
    min-height: 2.75rem;
    padding: 0.25rem 0;
}
.dency-topbar__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    min-height: 2.75rem;
    color: inherit;
}

/* Hamburger → close animation */
.dency-menu-toggle {
    min-width: 2.75rem;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    -webkit-tap-highlight-color: transparent;
}
.dency-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.dency-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.dency-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.dency-menu-toggle span {
    transition: transform 0.2s, opacity 0.2s;
}

/* Full-height mobile drawer */
.dency-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 200;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.dency-mobile-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.dency-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 210;
    width: min(100%, 22rem);
    height: 100%;
    height: 100dvh;
    background: var(--dency-bg);
    border-left: 1px solid var(--dency-border);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.dency-mobile-drawer.is-open {
    transform: translateX(0);
}

.dency-mobile-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--dency-border);
    flex-shrink: 0;
}
.dency-mobile-drawer__title {
    font-family: var(--dency-font-display);
    text-transform: uppercase;
    font-weight: 700;
}
.dency-mobile-drawer__close {
    border: none;
    background: none;
    font-size: 2rem;
    line-height: 1;
    min-width: 2.75rem;
    min-height: 2.75rem;
    cursor: pointer;
    color: var(--dency-text);
}

.dency-mobile-drawer__scroll {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 1.25rem 1rem;
    overscroll-behavior: contain;
}

.dency-mobile-link {
    display: flex;
    align-items: center;
    min-height: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--dency-border);
}

.dency-mobile-accordion {
    border-bottom: 1px solid var(--dency-border);
}
.dency-mobile-accordion summary {
    list-style: none;
    min-height: 3rem;
    display: flex;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.dency-mobile-accordion summary::-webkit-details-marker {
    display: none;
}
.dency-mobile-accordion summary::after {
    content: "+";
    margin-left: auto;
    font-size: 1.25rem;
    color: var(--dency-muted);
}
.dency-mobile-accordion[open] summary::after {
    content: "−";
}
.dency-mobile-accordion a {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    padding-left: 0.75rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--dency-muted);
}
.dency-mobile-accordion a:active {
    color: var(--dency-accent);
}

.dency-mobile-drawer__foot {
    flex-shrink: 0;
    padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom, 0));
    border-top: 1px solid var(--dency-border);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #fff;
}

@media (max-width: 991px) {
    .dency-container {
        width: min(100% - 2rem, var(--dency-container));
    }

    .dency-nav__inner {
        min-height: 3.75rem;
        gap: 0.75rem;
    }

    .dency-logo .dency-logo__full {
        display: none;
    }

    .dency-logo .dency-logo__mark {
        display: block;
    }

    .dency-services-ribbon__contact {
        gap: 0.5rem 1.25rem;
        justify-content: space-evenly;
        padding: 0.55rem 0;
    }

    .dency-services-ribbon__contact-label {
        display: none;
    }

    .dency-services-ribbon__contact-item {
        gap: 0;
    }

    .dency-services-ribbon__icon {
        width: 2.35rem;
        height: 2.35rem;
        font-size: 0.85rem;
    }

    .dency-topbar__inner {
        justify-content: center;
        gap: 0.75rem 1.25rem;
        font-size: 0.75rem;
    }

    .dency-section {
        padding: 3rem 0;
    }

    .dency-page-hero {
        padding: 3.5rem 0 2rem;
    }

    .dency-page-hero h1 {
        font-size: clamp(1.85rem, 9vw, 2.75rem);
        line-height: 1.05;
    }

    .dency-section__title {
        max-width: none;
        font-size: clamp(1.5rem, 7vw, 2.25rem);
    }

    .dency-hero__title,
    .dency-carousel .dency-hero__title {
        max-width: none;
        font-size: clamp(1.75rem, 9vw, 2.75rem);
        line-height: 1;
        margin-bottom: 1.25rem;
    }

    .dency-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .dency-hero__actions .dency-btn {
        width: 100%;
        min-height: 3rem;
    }

    .dency-carousel {
        min-height: 58vh;
        min-height: 58dvh;
    }

    .dency-carousel__slide {
        min-height: 58vh;
        min-height: 58dvh;
        padding: 2.5rem 0 3.5rem;
        align-items: flex-end;
    }

    .dency-carousel__prev,
    .dency-carousel__next {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.35rem;
    }

    .dency-carousel__prev {
        left: 0.5rem;
    }

    .dency-carousel__next {
        right: 0.5rem;
    }

    .dency-btn {
        min-height: 2.75rem;
        padding: 0.75rem 1.25rem;
    }

    .dency-spotlight-card__body .dency-btn,
    .dency-faq-layout .dency-btn {
        width: 100%;
    }

    .dency-service-grid {
        grid-template-columns: 1fr;
    }

    .dency-product-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .dency-product-card select,
    .dency-product-card .form-select {
        min-height: 2.75rem;
        font-size: 1rem;
    }

    .dency-product-extra {
        padding: 0.75rem 0.85rem;
        min-height: 2.75rem;
    }

    .dency-product-extra__box {
        width: 1.35rem;
        height: 1.35rem;
        margin-top: 0.05rem;
    }

    .dency-product-card__badge {
        font-size: 0.65rem;
        max-width: calc(100% - 2rem);
        line-height: 1.3;
    }

    .dency-contact-form input,
    .dency-contact-form textarea {
        font-size: 1rem;
        min-height: 3rem;
    }

    .dency-contact-form textarea {
        min-height: 8rem;
    }

    .dency-testimonial {
        font-size: 1rem;
    }

    .dency-testimonial-dots button {
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 50%;
        background: transparent;
        position: relative;
    }

    .dency-testimonial-dots button::after {
        content: "";
        position: absolute;
        inset: 50% auto auto 50%;
        width: 0.55rem;
        height: 0.55rem;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.35);
    }

    .dency-testimonial-dots button.is-active::after {
        background: var(--dency-accent);
    }

    .dency-faq__item summary {
        min-height: 2.75rem;
        display: flex;
        align-items: center;
        padding: 0.5rem 0;
        padding-right: 1.5rem;
        position: relative;
    }

    .dency-footer__marquee-track {
        font-size: 1.25rem;
    }

    .dency-back-top {
        right: max(1rem, env(safe-area-inset-right));
        bottom: max(1rem, env(safe-area-inset-bottom));
        width: 2.75rem;
        height: 2.75rem;
    }

    .elfsight-widget,
    .elfsight-facebook-wrap {
        max-width: 100%;
        overflow-x: hidden;
    }

    .dency-cta {
        padding: 3rem 0;
        text-align: left;
    }

    .dency-cta h2 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .dency-map {
        min-height: 240px;
    }
}

@media (min-width: 992px) {
    .dency-mobile-overlay,
    .dency-mobile-drawer {
        display: none !important;
    }
}

@media (max-width: 380px) {
    .dency-topbar__link span {
        font-size: 0.7rem;
    }
}

/* Legacy HTML service cards (imported from static site) */
.dency-html-services {
    display: grid;
    gap: 1.25rem;
    margin: 1.5rem 0;
}
@media (min-width: 768px) {
    .dency-html-services {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .dency-html-services {
        grid-template-columns: repeat(3, 1fr);
    }
}
.dency-html-services__heading {
    font-size: 1.5rem;
    margin: 2rem 0 0.5rem;
}
.dency-html-service-card {
    border: 1px solid var(--dency-border);
    border-radius: 0.35rem;
    padding: 1.25rem 1.35rem;
    background: #fff;
}
.dency-html-service-card h3 {
    font-size: 1.05rem;
    margin: 0 0 0.65rem;
    color: var(--dency-text);
}
.dency-html-service-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--dency-muted);
    line-height: 1.55;
}
.dency-html-services__after {
    margin-top: 1.5rem;
}

/* Admin / auth (login) */
.dency-auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
    background: var(--dency-bg);
    background-image: linear-gradient(165deg, var(--dency-bg) 0%, #e8e2d8 45%, var(--dency-accent-soft) 100%);
}
.dency-auth-page__inner {
    width: min(100%, 26rem);
    text-align: center;
}
.dency-auth-page__brand {
    display: inline-block;
    margin-bottom: 0.35rem;
}
.dency-auth-page__brand img {
    max-width: min(280px, 85vw);
    height: auto;
}
.dency-auth-page__tagline {
    margin: 0 0 1.5rem;
    font-size: 0.9rem;
    color: var(--dency-muted);
    letter-spacing: 0.02em;
}
.dency-auth-card {
    text-align: left;
    background: #fff;
    border: 1px solid var(--dency-border);
    border-radius: var(--dency-radius);
    padding: 1.75rem 1.5rem;
    box-shadow: 0 12px 40px rgba(12, 12, 12, 0.08);
}
.dency-auth-card__title {
    margin: 0 0 1.25rem;
    font-family: var(--dency-font-display);
    font-size: 1.35rem;
    font-weight: 600;
    text-align: center;
    color: var(--dency-text);
}
.dency-auth-lead {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--dency-muted);
}
.dency-auth-form {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.dency-auth-field {
    margin-bottom: 0.85rem;
}
.dency-auth-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dency-text);
}
.dency-auth-input {
    display: block;
    width: 100%;
    padding: 0.65rem 0.85rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--dency-border);
    border-radius: 0.35rem;
    background: #fff;
    color: var(--dency-text);
}
.dency-auth-input:focus {
    outline: none;
    border-color: var(--dency-accent);
    box-shadow: 0 0 0 3px var(--dency-accent-soft);
}
.dency-auth-error {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    color: var(--dency-accent);
}
.dency-auth-status {
    margin: 0 0 1rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
    background: var(--dency-accent-soft);
    border-radius: 0.35rem;
    color: var(--dency-text);
}
.dency-auth-remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0 1.25rem;
    font-size: 0.9rem;
    color: var(--dency-muted);
    cursor: pointer;
}
.dency-auth-remember input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--dency-accent);
}
.dency-auth-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-top: 0.5rem;
}
.dency-auth-actions--end {
    justify-content: flex-end;
}
.dency-auth-link {
    font-size: 0.9rem;
    color: var(--dency-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.dency-auth-link:hover {
    color: var(--dency-accent);
}
.dency-auth-page__back {
    margin: 1.5rem 0 0;
    font-size: 0.9rem;
}
.dency-auth-page__back a {
    color: var(--dency-muted);
    text-decoration: none;
}
.dency-auth-page__back a:hover {
    color: var(--dency-accent);
}
.dency-auth-page__back .fa-arrow-left {
    margin-right: 0.35rem;
}
