/* ============================================================
   Dowels 4 Africa — single stylesheet (complete)
   Palette: #212121 Charcoal · #C55252 Terracotta · #D4A373 Savanna Timber
            #F9F6F0 Desert Sand · #FFFFFF White
/* ============================================================
   1. ROOT VARIABLES / RESETS
   ============================================================ */
:root {
    /* ---- New palette ----
       Charcoal Black #212121  · Terracotta Red #C55252
       Savanna Timber #D4A373  · Desert Sand #F9F6F0  · White #FFFFFF */
    --dw-charcoal: #212121; /* primary text, headers, nav, dark sections */
    --dw-charcoal-dark: #181818; /* deeper charcoal for cards on dark bg */
    --dw-charcoal-light: #3a3a3a; /* lighter charcoal for gradients/borders */
    --dw-terracotta: #c55252; /* accent: buttons, CTAs, high-priority links */
    --dw-terracotta-dark: #a83f3f; /* terracotta hover */
    --dw-wheat: #d4a373; /* Savanna Timber: icons, borders, subheadings */
    --dw-wheat-soft: #f0e2d2; /* soft timber tint for backgrounds/quotes */
    --dw-white: #ffffff;
    --dw-grey: #6b6b6b; /* muted body text */
    --dw-light-bg: #f9f6f0; /* Desert Sand section background */
    --dw-radius: 10px;
    --dw-shadow: 0 14px 40px rgba(33, 33, 33, 0.12);
    --dw-shadow-sm: 0 6px 18px rgba(33, 33, 33, 0.1);
    --dw-shadow-lg: 0 30px 70px rgba(24, 24, 24, 0.35);
    --dw-transition: 0.3s ease;
    --dw-max: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", system-ui, sans-serif;
    color: var(--dw-charcoal);
    line-height: 1.65;
    background: var(--dw-white);
}

img {
    max-width: 100%;
    display: block;
    -webkit-user-drag: none; 
    user-select: none;
    pointer-events: none; 
}

a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

/* Hide reCAPTCHA v3 badge — disclosure shown in form instead */
.grecaptcha-badge {
    visibility: hidden;
}

/* ============================================================
   2. CONTAINER
   ============================================================ */
.dw-container {
    width: 100%;
    max-width: var(--dw-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   3. BUTTONS
   ============================================================ */
.dw-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: var(--dw-transition);
    border: 2px solid transparent;
}
.dw-btn--primary {
    background: var(--dw-terracotta);
    color: var(--dw-white);
}
.dw-btn--primary:hover {
    background: var(--dw-terracotta-dark);
    color: var(--dw-white);
    transform: translateY(-2px);
    box-shadow: var(--dw-shadow-sm);
}
.dw-btn--outline {
    background: transparent;
    color: var(--dw-charcoal);
    border-color: var(--dw-charcoal);
}
.dw-btn--outline:hover {
    background: var(--dw-charcoal);
    color: var(--dw-white);
}

/* ============================================================
   4. SHARED SECTION HELPERS
   ============================================================ */
.dw-section {
    padding: 90px 0;
}
.dw-section__head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.dw-section__title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--dw-charcoal);
    line-height: 1.2;
    margin-bottom: 16px;
}
.dw-section__title--light {
    color: var(--dw-wheat);
}
.dw-section__sub {
    color: var(--dw-grey);
    font-size: 1.05rem;
}
.dw-eyebrow {
    display: inline-block;
    color: var(--dw-wheat);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.dw-eyebrow--light {
    color: var(--dw-wheat);
}

/* Scroll reveal (used across pages) */
.dw-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.dw-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* Shared section responsive */
@media (max-width: 768px) {
    .dw-section {
        padding: 60px 0;
    }
}

/* ============================================================
   5. HEADER / NAV
   ============================================================ */
.dw-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--dw-white);
    transition: var(--dw-transition);
}
.dw-header--scrolled {
    box-shadow: var(--dw-shadow-sm);
}

.dw-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
}

/* Logo */
.dw-nav__brand {
    display: flex;
    align-items: center;
}
.dw-nav__logo {
    height: 48px; /* tweak to match your logo proportions */
    width: auto;
    display: block;
}

/* Menu links */
.dw-nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.dw-nav__link {
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: var(--dw-transition);
    position: relative;
}
.dw-nav__link:hover {
    color: var(--dw-charcoal-light);
}
.dw-nav__link--active {
    color: var(--dw-charcoal);
    font-weight: 600;
}
.dw-nav__link--cta {
    background: var(--dw-terracotta);
    color: var(--dw-white);
    border-radius: 50px;
    padding: 10px 24px;
}
.dw-nav__link--cta:hover {
    background: var(--dw-terracotta-dark);
    color: var(--dw-white);
}

/* Hamburger toggle */
.dw-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.dw-nav__toggle span {
    width: 26px;
    height: 2px;
    background: var(--dw-charcoal);
    transition: var(--dw-transition);
}
.dw-nav__toggle--active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.dw-nav__toggle--active span:nth-child(2) {
    opacity: 0;
}
.dw-nav__toggle--active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HEADER responsive ---------- */
@media (max-width: 768px) {
    .dw-nav__logo {
        height: 40px;
    }

    .dw-nav__toggle {
        display: flex;
    }
    .dw-nav__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dw-white);
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        box-shadow: var(--dw-shadow);
        max-height: 0;
        overflow: hidden;
        transition:
            max-height 0.35s ease,
            padding 0.35s ease;
        padding: 0 24px;
    }
    .dw-nav__menu--open {
        max-height: 420px;
        padding: 16px 24px;
    }
    .dw-nav__menu li {
        width: 100%;
    }
    .dw-nav__link,
    .dw-nav__link--cta {
        display: block;
        width: 100%;
    }
}

/* ============================================================
   6. FOOTER
   ============================================================ */
.dw-footer {
    background: var(--dw-charcoal-dark);
    color: rgba(255, 255, 255, 0.78);
}
.dw-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-top: 64px;
    padding-bottom: 48px;
}

/* Footer logo */
.dw-footer__brand {
    display: inline-block;
    margin-bottom: 16px;
}
.dw-footer__logo {
    height: 54px;
    width: auto;
    display: block;
    /* Footer is dark. If your logo is dark and disappears here,
       uncomment to render it white: */
    /* filter: brightness(0) invert(1); */
}

.dw-footer__text {
    font-size: 0.92rem;
    margin-bottom: 18px;
}
.dw-footer__badge {
    display: inline-block;
    background: var(--dw-wheat);
    color: var(--dw-charcoal);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}
.dw-footer__heading {
    color: var(--dw-wheat);
    font-size: 1.05rem;
    margin-bottom: 18px;
    font-weight: 600;
}
.dw-footer__links li,
.dw-footer__contact li {
    margin-bottom: 10px;
    font-size: 0.92rem;
}
.dw-footer__links a:hover,
.dw-footer__contact a:hover {
    color: var(--dw-wheat);
}
/* ---- Footer bottom bar (replaces existing .dw-footer__bar rule in section 6) ---- */
.dw-footer__bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 0.85rem;
}
.dw-footer__bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 28px;
}
.dw-footer__copy {
    margin: 0;
}
.dw-footer__legal {
    display: flex;
    align-items: center;
    gap: 14px;
}
.dw-footer__legal a {
    transition: var(--dw-transition);
}
.dw-footer__legal a:hover {
    color: var(--dw-wheat);
}
.dw-footer__legal-sep {
    color: rgba(255, 255, 255, 0.25);
}
.dw-footer__credit {
    margin: 0;
}
.dw-footer__credit a {
    color: var(--dw-wheat);
    transition: var(--dw-transition);
}
.dw-footer__credit a:hover {
    color: var(--dw-terracotta);
}

@media (max-width: 768px) {
    .dw-footer__bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}
.dw-footer__bar a {
    color: var(--dw-wheat);
}

/* ---------- FOOTER responsive ---------- */
@media (max-width: 980px) {
    .dw-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .dw-footer__logo {
        height: 46px;
    }
}
@media (max-width: 560px) {
    .dw-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   7. HOME: HERO
   ============================================================ */
.dw-hero {
    position: relative;
    /* Fill the viewport minus the sticky header so it sits above the fold */
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dw-charcoal-dark);
}

/* Layered background image with slow zoom */
.dw-hero__bg {
    position: absolute;
    inset: 0;
    background: url("/images/dowels/12.jpeg") center/cover no-repeat;
    transform: scale(1.08);
    animation: dw-hero-zoom 18s ease-out forwards;
}
@keyframes dw-hero-zoom {
    to {
        transform: scale(1);
    }
}

/* Diagonal charcoal gradient + soft wheat glow */
.dw-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            115deg,
            rgba(24, 24, 24, 0.97) 0%,
            rgba(24, 24, 24, 0.9) 38%,
            rgba(33, 33, 33, 0.68) 62%,
            rgba(33, 33, 33, 0.28) 100%
        ),
        radial-gradient(
            circle at 75% 30%,
            rgba(212, 163, 115, 0.2),
            transparent 45%
        );
}

/* Subtle grain texture */
.dw-hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.dw-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 60px;
    padding-top: 48px;
    padding-bottom: 48px;
}

/* Staggered entrance for content children */
.dw-hero__content > * {
    opacity: 0;
    transform: translateY(28px);
    animation: dw-hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.dw-hero__content > *:nth-child(1) {
    animation-delay: 0.15s;
}
.dw-hero__content > *:nth-child(2) {
    animation-delay: 0.3s;
}
.dw-hero__content > *:nth-child(3) {
    animation-delay: 0.45s;
}
.dw-hero__content > *:nth-child(4) {
    animation-delay: 0.6s;
}
.dw-hero__content > *:nth-child(5) {
    animation-delay: 0.75s;
}
@keyframes dw-hero-rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dw-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--dw-wheat);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.dw-hero__eyebrow-line {
    width: 42px;
    height: 2px;
    background: var(--dw-wheat);
    display: inline-block;
}

.dw-hero__title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: var(--dw-white);
    font-size: 51px;
    line-height: 1.04;
    margin-bottom: 22px;
}
.dw-hero__title-line {
    display: block;
}
.dw-hero__title em {
    font-style: italic;
    color: var(--dw-wheat);
}

.dw-hero__lead {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin-bottom: 30px;
}

.dw-hero__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}
.dw-hero__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dw-white);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--dw-transition);
}
.dw-hero__link-arrow {
    transition: transform var(--dw-transition);
}
.dw-hero__link:hover {
    color: var(--dw-wheat);
}
.dw-hero__link:hover .dw-hero__link-arrow {
    transform: translateX(6px);
}

/* Stat strip */
.dw-hero__stats {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(212, 163, 115, 0.3);
    padding-top: 22px;
}
.dw-hero__stat {
    padding-right: 36px;
    margin-right: 36px;
    border-right: 1px solid rgba(212, 163, 115, 0.22);
}
.dw-hero__stat:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}
.dw-hero__stat-num {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--dw-wheat);
    line-height: 1;
}
.dw-hero__stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

/* Floating product card */
.dw-hero__card {
    position: relative;
    background: var(--dw-white);
    border-radius: 16px;
    box-shadow: var(--dw-shadow-lg);
    overflow: hidden;
    max-width: 380px;
    margin-left: auto;
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    animation: dw-hero-card 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}
@keyframes dw-hero-card {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.dw-hero__card-img {
    height: 240px;
    overflow: hidden;
}
.dw-hero__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.dw-hero__card:hover .dw-hero__card-img img {
    transform: scale(1.07);
}
.dw-hero__card-body {
    padding: 26px;
}
.dw-hero__card-tag {
    display: inline-block;
    background: var(--dw-wheat);
    color: var(--dw-charcoal);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.dw-hero__card-title {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    color: var(--dw-charcoal);
    margin-bottom: 8px;
}
.dw-hero__card-body p {
    color: var(--dw-grey);
    font-size: 0.92rem;
}

/* ---------- HERO responsive ---------- */
@media (max-width: 980px) {
    .dw-hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .dw-hero__card {
        margin-left: 0;
        max-width: 420px;
    }
}
@media (max-width: 768px) {
    .dw-hero {
        min-height: auto;
    }
    .dw-hero__stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .dw-hero__stat {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        flex: 1 1 40%;
    }
}
@media (max-width: 560px) {
    .dw-hero__actions {
        gap: 16px;
    }
}

/* ============================================================
   8. HOME: INTRO
   ============================================================ */
.dw-intro {
    background: var(--dw-light-bg);
    text-align: center;
}
.dw-intro .dw-section__title {
    max-width: 760px;
    margin: 0 auto 36px;
}
.dw-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto 36px;
    color: var(--dw-grey);
}

/* ---------- INTRO responsive ---------- */
@media (max-width: 768px) {
    .dw-intro__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   9. HOME: ABOUT
   ============================================================ */
.dw-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.dw-about__media {
    position: relative;
}
.dw-about__media img {
    border-radius: var(--dw-radius);
    box-shadow: var(--dw-shadow);
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.dw-about__media-offset {
    width: 55% !important;
    height: 200px !important;
    position: absolute;
    top: -20px;
    left: -20px;
    border: 6px solid var(--dw-white);
}
.dw-about__content p {
    color: var(--dw-grey);
    margin-bottom: 18px;
}
.dw-about__content .dw-btn {
    margin-top: 12px;
}

/* ---------- ABOUT responsive ---------- */
@media (max-width: 768px) {
    .dw-about__grid {
        grid-template-columns: 1fr;
    }
    .dw-about__media-offset {
        display: none;
    }
}

/* ============================================================
   10. HOME: PROCESS
   ============================================================ */
.dw-process {
    background: var(--dw-charcoal);
}
.dw-process__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.dw-step {
    background: var(--dw-charcoal-dark);
    border-radius: var(--dw-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--dw-transition);
}
.dw-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--dw-shadow);
}
.dw-step__media {
    position: relative;
}
.dw-step__media img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}
.dw-step__num {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--dw-wheat);
    color: var(--dw-charcoal);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
}
.dw-step__body {
    padding: 26px;
}
.dw-step__label {
    color: var(--dw-wheat);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
}
.dw-step__title {
    font-family: "Playfair Display", serif;
    color: var(--dw-white);
    font-size: 1.4rem;
    margin: 8px 0 12px;
}
.dw-step__body p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

/* ---------- PROCESS responsive ---------- */
@media (max-width: 980px) {
    .dw-process__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .dw-process__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   11. HOME: APPLICATIONS
   ============================================================ */
.dw-apps {
    background: var(--dw-light-bg);
}
.dw-apps__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 56px;
}
.dw-apps__item {
    background: var(--dw-white);
    border: 1px solid #e6e1d6;
    color: var(--dw-charcoal);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--dw-transition);
}
.dw-apps__item:hover {
    background: var(--dw-wheat);
    border-color: var(--dw-wheat);
}
.dw-apps__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.dw-apps__img {
    border-radius: var(--dw-radius);
    overflow: hidden;
    box-shadow: var(--dw-shadow-sm);
}
.dw-apps__img img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    transition: var(--dw-transition);
}
.dw-apps__img:hover img {
    transform: scale(1.06);
}

/* ---------- APPLICATIONS responsive ---------- */
@media (max-width: 980px) {
    .dw-apps__gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .dw-apps__gallery {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   12. HOME: CLIENTS
   ============================================================ */
.dw-clients {
    background: var(--dw-charcoal);
}
.dw-clients__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.dw-clients__logo {
    background: var(--dw-charcoal-dark);
    border: 1px solid var(--dw-charcoal-light);
    border-radius: var(--dw-radius);
    padding: 36px;
    text-align: center;
    color: var(--dw-wheat-soft);
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    transition: var(--dw-transition);
}
.dw-clients__logo:hover {
    background: var(--dw-wheat);
    color: var(--dw-charcoal);
    transform: translateY(-4px);
}

/* ---------- CLIENTS responsive ---------- */
@media (max-width: 980px) {
    .dw-clients__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .dw-clients__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   13. HOME: TESTIMONIALS
   ============================================================ */
.dw-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.dw-testimonial {
    background: var(--dw-wheat-soft);
    border-left: 5px solid var(--dw-wheat);
    border-radius: var(--dw-radius);
    padding: 36px;
}
.dw-testimonial p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 18px;
    color: var(--dw-charcoal);
}
.dw-testimonial footer {
    font-size: 0.9rem;
    color: var(--dw-grey);
}
.dw-testimonial footer strong {
    color: var(--dw-charcoal);
}

/* ---------- TESTIMONIALS responsive ---------- */
@media (max-width: 768px) {
    .dw-testimonials__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   14. SHARED: CTA
   ============================================================ */
.dw-cta {
    padding: 80px 0;
    background: linear-gradient(
        120deg,
        var(--dw-charcoal) 0%,
        var(--dw-charcoal-light) 100%
    );
    color: var(--dw-white);
    text-align: center;
}
.dw-cta__inner h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 14px;
}
.dw-cta__inner p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

/* ============================================================
   15. INNER PAGE HERO (Products / About)
   ============================================================ */
.dw-page-hero {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--dw-white);
    padding: 90px 0;
    overflow: hidden;
}
.dw-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(24, 24, 24, 0.95) 0%,
        rgba(33, 33, 33, 0.78) 70%,
        rgba(33, 33, 33, 0.55) 100%
    );
}
.dw-page-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.dw-page-hero__title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 16px;
}
.dw-page-hero__lead {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
}

/* ============================================================
   16. PRODUCTS: STICKY CATEGORY NAV
   ============================================================ */
.dw-prodnav {
    position: sticky;
    top: 84px; /* sits just below the main header */
    z-index: 900;
    background: var(--dw-charcoal);
    border-top: 3px solid var(--dw-wheat);
    box-shadow: var(--dw-shadow-sm);
}
.dw-prodnav__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.dw-prodnav__label {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(212, 163, 115, 0.7);
    margin-right: 12px;
    white-space: nowrap;
}
.dw-prodnav__link {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 9px 20px;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: var(--dw-transition);
    white-space: nowrap;
}
.dw-prodnav__link:hover {
    color: var(--dw-wheat);
    border-color: rgba(212, 163, 115, 0.45);
}
.dw-prodnav__link--active {
    background: var(--dw-terracotta);
    color: var(--dw-white);
    font-weight: 600;
    border-color: var(--dw-terracotta);
}

/* ---------- PRODUCTS NAV responsive ---------- */
@media (max-width: 680px) {
    .dw-prodnav__inner {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .dw-prodnav__inner::-webkit-scrollbar {
        display: none;
    }
    .dw-prodnav__label {
        display: none;
    }
}

/* ============================================================
   17. PRODUCTS: SECTIONS  (replaces old .dw-products block)
   ============================================================ */
.dw-prod--alt {
    background: var(--dw-light-bg);
}

/* Keep section titles clear of the two sticky bars on anchor jump */
.dw-prod[id] {
    scroll-margin-top: 140px;
}

/* Two-column layout: media | content+table */
.dw-prod__layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
}
/* Alternating sections flip the media to the right */
.dw-prod__layout--rev .dw-prod__media {
    order: 2;
}

/* --- Media column (sticky on desktop) --- */
.dw-prod__media {
    position: sticky;
    top: 150px;
}

.dw-prod__gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dw-prod__shot {
    border-radius: var(--dw-radius);
    overflow: hidden;
    box-shadow: var(--dw-shadow);
    background: var(--dw-light-bg);
}
.dw-prod__shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dw-prod__gallery--contain .dw-prod__shot {
    background: #fff;
    padding: 16px;
}

.dw-prod__gallery--contain .dw-prod__shot img {
    object-fit: contain;
}
.dw-prod__shot:hover img {
    transform: scale(1.05);
}

.dw-prod__shot--lead img {
    height: 380px;
}

.dw-prod__thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.dw-prod__thumbs .dw-prod__shot img {
    height: 170px;
}

/* --- Content column --- */
.dw-prod__content .dw-section__title {
    margin-bottom: 14px;
}
.dw-prod__sub {
    color: var(--dw-grey);
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 560px;
}
.dw-prod__note {
    margin-top: 28px;
    font-size: 0.9rem;
    color: var(--dw-grey);
    font-style: italic;
}

/* ---------- PRODUCTS SECTIONS responsive ---------- */
@media (max-width: 980px) {
    .dw-prod__layout,
    .dw-prod__layout--rev {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    /* Media always sits above the table on mobile/tablet */
    .dw-prod__layout--rev .dw-prod__media {
        order: -1;
    }
    .dw-prod__media {
        position: static;
        top: auto;
    }
    .dw-prod__shot--lead img {
        height: 320px;
    }
}
@media (max-width: 480px) {
    .dw-prod__shot--lead img {
        height: 240px;
    }
    .dw-prod__thumbs .dw-prod__shot img {
        height: 130px;
    }
}

/* ============================================================
   18. PRODUCTS: TABLES
   ============================================================ */
.dw-table-wrap {
    overflow-x: auto;
    border-radius: var(--dw-radius);
    box-shadow: var(--dw-shadow-sm);
    background: var(--dw-white);
}
.dw-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.dw-table thead {
    background: var(--dw-charcoal);
    color: var(--dw-wheat);
}
.dw-table th {
    text-align: left;
    padding: 16px 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    text-transform: uppercase;
}
.dw-table td {
    padding: 15px 22px;
    border-bottom: 1px solid #ece8df;
    color: var(--dw-charcoal);
}
.dw-table tbody tr {
    transition: background var(--dw-transition);
}
.dw-table tbody tr:hover {
    background: var(--dw-wheat-soft);
}
.dw-table tbody tr:last-child td {
    border-bottom: none;
}
.dw-table td:first-child {
    font-weight: 600;
}

/* ---------- TABLES responsive (stack into cards) ---------- */
@media (max-width: 680px) {
    .dw-table thead {
        display: none;
    }
    .dw-table,
    .dw-table tbody,
    .dw-table tr,
    .dw-table td {
        display: block;
        width: 100%;
    }
    .dw-table tr {
        margin-bottom: 14px;
        border: 1px solid #ece8df;
        border-radius: var(--dw-radius);
        overflow: hidden;
    }
    .dw-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 18px;
        border-bottom: 1px solid #f0ece3;
    }
    .dw-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--dw-grey);
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .dw-table td:first-child {
        background: var(--dw-wheat-soft);
    }
}

/* ============================================================
   19. ABOUT: VALUES GRID
   ============================================================ */
.dw-values__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.dw-value {
    background: var(--dw-white);
    border: 1px solid #ece8df;
    border-radius: var(--dw-radius);
    padding: 34px;
    transition: var(--dw-transition);
}
.dw-value:hover {
    transform: translateY(-5px);
    box-shadow: var(--dw-shadow);
    border-color: var(--dw-wheat);
}
.dw-value__num {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dw-wheat);
    line-height: 1;
    margin-bottom: 14px;
}
.dw-value__title {
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    color: var(--dw-charcoal);
    margin-bottom: 10px;
}
.dw-value p {
    color: var(--dw-grey);
    font-size: 0.95rem;
}

/* ---------- VALUES responsive ---------- */
@media (max-width: 680px) {
    .dw-values__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   20. ABOUT: STAT BAND
   ============================================================ */
.dw-statband {
    background: linear-gradient(
        120deg,
        var(--dw-charcoal) 0%,
        var(--dw-charcoal-light) 100%
    );
    padding: 64px 0;
}
.dw-statband__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.dw-statband__num {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--dw-wheat);
    line-height: 1;
}
.dw-statband__label {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* ---------- STAT BAND responsive ---------- */
@media (max-width: 880px) {
    .dw-statband__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}
@media (max-width: 480px) {
    .dw-statband__grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================================
   21. CONTACT
   ============================================================ */
.dw-contact__layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
}

/* --- Info column --- */
.dw-contact__intro {
    color: var(--dw-grey);
    margin-bottom: 36px;
    max-width: 440px;
}
.dw-contact__list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.dw-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.dw-contact__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--dw-wheat-soft);
    color: var(--dw-terracotta);
    display: grid;
    place-items: center;
}
.dw-contact__icon svg {
    width: 22px;
    height: 22px;
}
.dw-contact__detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 4px;
}
.dw-contact__label {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dw-wheat);
}
.dw-contact__detail a,
.dw-contact__detail span:not(.dw-contact__label) {
    font-size: 1rem;
    color: var(--dw-charcoal);
    transition: var(--dw-transition);
}
.dw-contact__detail a:hover {
    color: var(--dw-terracotta);
}

/* --- Form column --- */
.dw-contact__form-wrap {
    background: var(--dw-white);
    border: 1px solid #ece8df;
    border-radius: var(--dw-radius);
    box-shadow: var(--dw-shadow);
    padding: 40px;
}
.dw-contact__form-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    color: var(--dw-charcoal);
    margin-bottom: 24px;
}

/* --- Form elements --- */
.dw-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.dw-form__group {
    margin-bottom: 20px;
}
.dw-form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dw-charcoal);
    margin-bottom: 8px;
}
.dw-form__label span {
    color: var(--dw-terracotta);
}
.dw-form__input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #ddd6c9;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dw-charcoal);
    background: var(--dw-light-bg);
    transition: var(--dw-transition);
}
.dw-form__input:focus {
    outline: none;
    border-color: var(--dw-wheat);
    background: var(--dw-white);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.18);
}
.dw-form__input--error {
    border-color: var(--dw-terracotta);
}
.dw-form__textarea {
    resize: vertical;
    min-height: 130px;
}
.dw-form__error {
    display: block;
    margin-top: 6px;
    font-size: 0.82rem;
    color: var(--dw-terracotta);
}
.dw-form__submit {
    margin-top: 8px;
    border: none;
    cursor: pointer;
}

/* Honeypot — visually hidden but present in DOM */
.dw-form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* --- Alerts --- */
.dw-alert {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.92rem;
    margin-bottom: 22px;
}
.dw-alert--success {
    background: #e8f3ea;
    color: #2e6b3e;
    border: 1px solid #bcdcc3;
}
.dw-alert--error {
    background: #fbeaea;
    color: #a83f3f;
    border: 1px solid #f0c9c9;
}

/* ---------- CONTACT responsive ---------- */
@media (max-width: 980px) {
    .dw-contact__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 560px) {
    .dw-contact__form-wrap {
        padding: 28px 22px;
    }
    .dw-form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
.dw-form__recaptcha-note {
    margin-top: 16px;
    font-size: 0.78rem;
    color: var(--dw-grey);
    line-height: 1.5;
}
.dw-form__recaptcha-note a {
    color: var(--dw-terracotta);
    text-decoration: underline;
}

/* ============================================================
   22. QUOTE PAGE  +  ENQUIRE BUTTONS
   ============================================================ */

/* ---- Per-category enquire button (sits under each product table) ---- */
.dw-prod__enquire {
    margin-top: 24px;
}

/* ---- Quote layout ---- */
.dw-quote__layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: start;
}
.dw-quote__heading {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    color: var(--dw-charcoal);
    margin-bottom: 10px;
}
.dw-quote__hint {
    font-size: 0.9rem;
    color: var(--dw-grey);
    margin-bottom: 24px;
}
.dw-quote__hint a {
    color: var(--dw-terracotta);
    text-decoration: underline;
}

/* ---- Line items ---- */
.dw-quote__lines {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}
.dw-quote__line {
    position: relative;
    background: var(--dw-white);
    border: 1px solid #ece8df;
    border-radius: var(--dw-radius);
    padding: 22px 48px 22px 22px;
    box-shadow: var(--dw-shadow-sm);
}
.dw-quote__line-grid {
    display: grid;
    grid-template-columns: 2fr 1.4fr 0.8fr;
    gap: 16px;
}
.dw-quote__line-grid .dw-form__group {
    margin-bottom: 0;
}
.dw-quote__remove {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    background: var(--dw-light-bg);
    color: var(--dw-grey);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--dw-transition);
}
.dw-quote__remove:hover {
    background: var(--dw-terracotta);
    color: var(--dw-white);
}
.dw-quote__add {
    cursor: pointer;
}

/* ---- Details sidebar ---- */
.dw-quote__details {
    background: var(--dw-white);
    border: 1px solid #ece8df;
    border-radius: var(--dw-radius);
    box-shadow: var(--dw-shadow);
    padding: 32px;
    position: sticky;
    top: 120px;
}

/* ---- Recaptcha disclosure (shared with contact) ---- */
.dw-form__recaptcha-note {
    margin-top: 16px;
    font-size: 0.78rem;
    color: var(--dw-grey);
    line-height: 1.5;
}
.dw-form__recaptcha-note a {
    color: var(--dw-terracotta);
    text-decoration: underline;
}

/* ---------- QUOTE responsive ---------- */
@media (max-width: 980px) {
    .dw-quote__layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .dw-quote__details {
        position: static;
        top: auto;
    }
}
@media (max-width: 560px) {
    .dw-quote__line-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .dw-quote__line-grid .dw-form__group {
        margin-bottom: 16px;
    }
    .dw-quote__line-grid .dw-form__group:last-child {
        margin-bottom: 0;
    }
    .dw-quote__details {
        padding: 24px 20px;
    }
}

/* ============================================================
   23. WHAT IS A DOWEL  +  FAQ
   ============================================================ */
.dw-wid--alt {
    background: var(--dw-light-bg);
}

/* ---- Intro / definition ---- */
.dw-wid__intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: center;
}
.dw-wid__intro-text p {
    color: var(--dw-grey);
    margin-bottom: 18px;
}
.dw-wid__intro-media img {
    border-radius: var(--dw-radius);
    box-shadow: var(--dw-shadow);
    width: 100%;
    height: 460px;
    object-fit: cover;
}
.dw-wid__dict {
    margin-top: 28px;
    background: var(--dw-wheat-soft);
    border-left: 5px solid var(--dw-wheat);
    border-radius: var(--dw-radius);
    padding: 24px 28px;
}
.dw-wid__dict-word {
    display: inline-block;
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dw-charcoal);
}
.dw-wid__dict-pron {
    display: block;
    color: var(--dw-grey);
    font-size: 0.9rem;
    margin: 4px 0 12px;
}
.dw-wid__dict p {
    color: var(--dw-charcoal);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 880px) {
    .dw-wid__intro {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .dw-wid__intro-media {
        order: -1;
    }
    .dw-wid__intro-media img {
        height: 320px;
    }
}

/* ---- Uses grid ---- */
.dw-wid__uses {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.dw-wid__use {
    background: var(--dw-white);
    border: 1px solid #ece8df;
    border-radius: var(--dw-radius);
    padding: 28px 24px;
    transition: var(--dw-transition);
}
.dw-wid__use:hover {
    transform: translateY(-5px);
    box-shadow: var(--dw-shadow);
    border-color: var(--dw-wheat);
}
.dw-wid__use-title {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    color: var(--dw-charcoal);
    margin-bottom: 8px;
}
.dw-wid__use p {
    color: var(--dw-grey);
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .dw-wid__uses {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 520px) {
    .dw-wid__uses {
        grid-template-columns: 1fr;
    }
}

/* ---- Types grid ---- */
.dw-wid__types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.dw-wid__type {
    background: var(--dw-white);
    border: 1px solid #ece8df;
    border-radius: var(--dw-radius);
    overflow: hidden;
    transition: var(--dw-transition);
}
.dw-wid__type:hover {
    transform: translateY(-5px);
    box-shadow: var(--dw-shadow);
}
.dw-wid__type-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.dw-wid__type:hover .dw-wid__type-img img {
    transform: scale(1.06);
}
.dw-wid__type-body {
    padding: 24px;
}
.dw-wid__type-title {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    color: var(--dw-charcoal);
    margin-bottom: 8px;
}
.dw-wid__type-body p {
    color: var(--dw-grey);
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .dw-wid__types {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .dw-wid__types {
        grid-template-columns: 1fr;
    }
}

/* ---- How to choose ---- */
.dw-wid__choose {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}
.dw-wid__choose-text p {
    color: var(--dw-grey);
    margin-bottom: 18px;
}
.dw-wid__checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.dw-wid__checklist li {
    position: relative;
    padding-left: 30px;
    color: var(--dw-grey);
}
.dw-wid__checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--dw-wheat);
    box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.22);
}
.dw-wid__checklist strong {
    color: var(--dw-charcoal);
}
.dw-wid__choose-card {
    background: var(--dw-charcoal);
    border-radius: var(--dw-radius);
    padding: 36px;
    box-shadow: var(--dw-shadow);
}
.dw-wid__choose-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    color: var(--dw-wheat);
    margin-bottom: 12px;
}
.dw-wid__choose-card p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

@media (max-width: 880px) {
    .dw-wid__choose {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ---- Afrikaans ---- */
.dw-wid__afr {
    max-width: 720px;
}
.dw-wid__afr p {
    color: var(--dw-grey);
    margin-bottom: 16px;
}
.dw-wid__afr em {
    color: var(--dw-charcoal);
    font-style: italic;
}
.dw-wid__afr-pill {
    display: inline-block;
    background: var(--dw-wheat-soft);
    color: var(--dw-charcoal);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-top: 4px !important;
}
.dw-wid__afr-pill strong {
    color: var(--dw-terracotta);
}

/* ---- FAQ accordion ---- */
.dw-faq {
    max-width: 860px;
}
.dw-faq__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.dw-faq__item {
    background: var(--dw-white);
    border: 1px solid #ece8df;
    border-radius: var(--dw-radius);
    overflow: hidden;
    transition: var(--dw-transition);
}
.dw-faq__item--open {
    border-color: var(--dw-wheat);
    box-shadow: var(--dw-shadow-sm);
}
.dw-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dw-charcoal);
    transition: var(--dw-transition);
}
.dw-faq__q:hover {
    color: var(--dw-terracotta);
}

/* Plus / minus icon */
.dw-faq__icon {
    position: relative;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}
.dw-faq__icon::before,
.dw-faq__icon::after {
    content: "";
    position: absolute;
    background: var(--dw-terracotta);
    border-radius: 2px;
    transition: var(--dw-transition);
}
.dw-faq__icon::before {
    top: 10px;
    left: 0;
    width: 22px;
    height: 2px;
}
.dw-faq__icon::after {
    top: 0;
    left: 10px;
    width: 2px;
    height: 22px;
}
.dw-faq__item--open .dw-faq__icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.dw-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.dw-faq__a p {
    padding: 0 26px 24px;
    color: var(--dw-grey);
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 560px) {
    .dw-faq__q {
        padding: 18px 20px;
        font-size: 0.98rem;
    }
    .dw-faq__a p {
        padding: 0 20px 20px;
    }
}

/* ============================================================
   24. LEGAL PAGES (Terms & Privacy)
   ============================================================ */
.dw-legal__inner {
    max-width: 820px;
}
.dw-legal__updated {
    font-size: 0.85rem;
    color: var(--dw-grey);
    margin-bottom: 28px;
}
.dw-legal__lead {
    font-size: 1.08rem;
    color: var(--dw-charcoal);
    line-height: 1.7;
    margin-bottom: 40px;
}
.dw-legal__h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    color: var(--dw-charcoal);
    margin: 36px 0 14px;
}
.dw-legal__inner p {
    color: var(--dw-grey);
    margin-bottom: 16px;
    line-height: 1.75;
}
.dw-legal__inner a {
    color: var(--dw-terracotta);
    text-decoration: underline;
}
.dw-legal__list {
    margin: 0 0 16px;
    padding-left: 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dw-legal__list li {
    position: relative;
    padding-left: 26px;
    color: var(--dw-grey);
    line-height: 1.6;
}
.dw-legal__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dw-wheat);
}
/* ============================================================
   25. ADMIN LOGIN (public-side, uses dw- system)  — append to main stylesheet
   ============================================================ */
.dw-login__inner {
    display: flex;
    justify-content: center;
}
.dw-login__card {
    width: 100%;
    max-width: 440px;
    background: var(--dw-white);
    border: 1px solid #ece8df;
    border-radius: var(--dw-radius);
    box-shadow: var(--dw-shadow);
    padding: 44px 40px;
}
.dw-login__title {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: var(--dw-charcoal);
    margin: 4px 0 6px;
}
.dw-login__sub {
    color: var(--dw-grey);
    margin-bottom: 28px;
    font-size: 0.95rem;
}
.dw-login__remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--dw-grey);
    margin-bottom: 22px;
}
.dw-login__card .dw-form__submit {
    width: 100%;
    text-align: center;
}

@media (max-width: 480px) {
    .dw-login__card {
        padding: 32px 24px;
    }
}

/* ============================================================
   ADMIN DASHBOARD WIDGETS  — add to your admin (rf-) stylesheet
   ============================================================ */
.rf-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.rf-stat {
    background: #fff;
    border: 1px solid #e9e9ee;
    border-radius: 12px;
    padding: 22px 24px;
}
.rf-stat__num {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
}
.rf-stat__label {
    display: block;
    margin-top: 8px;
    font-size: 0.82rem;
    color: #8a8a9a;
}
@media (max-width: 880px) {
    .rf-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .rf-stats {
        grid-template-columns: 1fr;
    }
}

/* Table */
.rf-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}
.rf-table th {
    text-align: left;
    padding: 12px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #8a8a9a;
    border-bottom: 1px solid #e9e9ee;
}
.rf-table td {
    padding: 14px;
    border-bottom: 1px solid #f0f0f4;
    color: #2a2a3a;
}
.rf-table tbody tr:hover {
    background: #fafafb;
}
.rf-table__actions {
    display: flex;
    gap: 14px;
    align-items: center;
}

.rf-link {
    color: #4c6cac;
    font-weight: 600;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.92rem;
}
.rf-link:hover {
    text-decoration: underline;
}
.rf-link--danger {
    color: #c0392b;
}

/* Badges */
.rf-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 600;
}
.rf-badge--on {
    background: #e6f4ea;
    color: #2e7d46;
}
.rf-badge--off {
    background: #f0f0f4;
    color: #8a8a9a;
}

/* Alert */
.rf-alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.rf-alert--success {
    background: #e6f4ea;
    color: #2e7d46;
    border: 1px solid #bfe3cb;
}

.rf-pagination {
    margin-top: 22px;
}
/* ============================================================
   ADMIN LAYOUT SHELL  — add to your admin (rf-) stylesheet
   ============================================================ */
* {
    box-sizing: border-box;
}

.rf-body {
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    background: #f4f4f7;
    color: #2a2a3a;
}

.rf-layout {
    display: flex;
    min-height: 100vh;
}

/* ---- Sidebar ---- */
.rf-sidebar {
    width: 248px;
    flex-shrink: 0;
    background: #1a1a2e;
    color: #c8c8d4;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 50;
}
.rf-sidebar__brand {
    padding: 24px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.rf-sidebar__logo {
    height: 38px;
    width: auto;
    display: block;
}

.rf-nav {
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.rf-nav__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 8px;
    color: #c8c8d4;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.rf-nav__link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}
.rf-nav__link.is-active {
    background: #4c6cac;
    color: #fff;
}
.rf-nav__link svg {
    flex-shrink: 0;
}

.rf-sidebar__foot {
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.rf-nav__link--muted {
    font-size: 0.88rem;
    opacity: 0.8;
}

/* ---- Main ---- */
.rf-main {
    flex: 1;
    margin-left: 248px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.rf-topbar {
    height: 60px;
    background: #fff;
    border-bottom: 1px solid #e9e9ee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 40;
}
.rf-topbar__menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #2a2a3a;
    padding: 6px;
}
.rf-topbar__user {
    font-weight: 600;
    font-size: 0.92rem;
    margin-left: auto;
}

.rf-content {
    padding: 28px;
    max-width: 1100px;
    width: 100%;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .rf-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    .rf-sidebar.is-open {
        transform: translateX(0);
    }
    .rf-main {
        margin-left: 0;
    }
    .rf-topbar__menu {
        display: block;
    }
    .rf-topbar__user {
        margin-left: 12px;
    }
}

/* ============================================================
   26. ADMIN — STRUCTURAL + FORM STYLES
   Backs the rf- classes across all admin views (dashboard,
   blogs, authors): page/header/buttons/sections/fields/editor/
   dropzone/modal, plus dashboard stat-icons, quick cards, empty.
   ============================================================ */

/* ---- Page + header ---- */
.rf-page {
    max-width: 1000px;
}

.rf-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}
.rf-header__title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.1;
    margin: 0;
}
.rf-header__sub {
    color: #8a8a9a;
    font-size: 0.95rem;
    margin: 6px 0 0;
}

/* ---- Buttons ---- */
.rf-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3a3a3a;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px 20px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}
.rf-submit:hover {
    background: #242424;
    transform: translateY(-1px);
}
.rf-submit svg {
    flex-shrink: 0;
}

.rf-cancel {
    display: inline-flex;
    align-items: center;
    padding: 11px 20px;
    color: #8a8a9a;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border-radius: 8px;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.rf-cancel:hover {
    background: #f0f0f4;
    color: #2a2a3a;
}

.rf-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8a8a9a;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s ease;
}
.rf-back:hover {
    color: #3a3a3a;
}

/* ---- Sections (cards) ---- */
.rf-section {
    background: #fff;
    border: 1px solid #e9e9ee;
    border-radius: 14px;
    margin-bottom: 22px;
    overflow: hidden;
}
.rf-section__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    border-bottom: 1px solid #f0f0f4;
}
.rf-section__head--row {
    justify-content: space-between;
}
.rf-section__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #efefef;
    color: #3a3a3a;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.rf-section__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}
.rf-section__body {
    padding: 24px;
}

/* ---- Footer (form actions) ---- */
.rf-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

/* ---- Fields ---- */
.rf-field {
    margin-bottom: 20px;
}
.rf-field:last-child {
    margin-bottom: 0;
}
.rf-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.rf-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2a2a3a;
    margin-bottom: 7px;
}
.rf-label .req {
    color: #c0392b;
}
.rf-hint {
    font-size: 0.8rem;
    color: #8a8a9a;
    margin: 6px 0 0;
}
.rf-hint a {
    color: #3a3a3a;
}

.rf-input,
.rf-select,
.rf-textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #d7d7e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.92rem;
    color: #2a2a3a;
    background: #fff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.rf-input:focus,
.rf-select:focus,
.rf-textarea:focus {
    outline: none;
    border-color: #3a3a3a;
    box-shadow: 0 0 0 3px rgba(58, 58, 58, 0.15);
}
.rf-textarea {
    resize: vertical;
    min-height: 70px;
}

.rf-check-label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.92rem;
    color: #2a2a3a;
    cursor: pointer;
}

/* ---- Rich text editor ---- */
.rf-editor-wrap {
    border: 1px solid #d7d7e0;
    border-radius: 8px;
    overflow: hidden;
}
.rf-editor-toolbar {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
    padding: 8px 10px;
    background: #f7f7fa;
    border-bottom: 1px solid #e9e9ee;
}
.rf-toolbar-btn {
    display: inline-grid;
    place-items: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    background: #fff;
    border: 1px solid #e1e1ea;
    border-radius: 6px;
    color: #2a2a3a;
    font-size: 0.85rem;
    cursor: pointer;
    position: relative;
    transition:
        background 0.15s ease,
        border-color 0.15s ease;
}
.rf-toolbar-btn:hover {
    background: #efefef;
    border-color: #3a3a3a;
    color: #3a3a3a;
}
.rf-toolbar-divider {
    width: 1px;
    height: 22px;
    background: #e1e1ea;
    margin: 0 4px;
}
.rf-toolbar-file {
    overflow: hidden;
}
.rf-toolbar-file input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    font-size: 0;
    width: 100%;
    height: 100%;
}
.rf-editor-body {
    min-height: 280px;
    padding: 16px 18px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #2a2a3a;
    outline: none;
}
.rf-editor-body:empty::before {
    content: attr(data-placeholder);
    color: #b0b0bd;
}
.rf-editor-body h2 {
    font-size: 1.4rem;
    margin: 18px 0 8px;
}
.rf-editor-body h3 {
    font-size: 1.15rem;
    margin: 16px 0 8px;
}
.rf-editor-body p {
    margin: 0 0 12px;
}
.rf-editor-body ul,
.rf-editor-body ol {
    margin: 0 0 12px;
    padding-left: 22px;
}
.rf-editor-body a {
    color: #3a3a3a;
    text-decoration: underline;
}
.rf-editor-body img {
    max-width: 100%;
    border-radius: 8px;
    margin: 8px 0;
}

/* ---- Image inputs / previews ---- */
.rf-thumb-wrap {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.rf-thumb-preview {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border: 1px solid #e1e1ea;
    border-radius: 8px;
    background: #f7f7fa;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #b0b0bd;
}
.rf-thumb-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rf-dropzone {
    position: relative;
    border: 2px dashed #d7d7e0;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}
.rf-dropzone:hover {
    border-color: #3a3a3a;
    background: #fafafa;
}
.rf-dropzone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.rf-dropzone__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    border-radius: 50%;
    background: #efefef;
    color: #3a3a3a;
    display: grid;
    place-items: center;
}
.rf-dropzone__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2a2a3a;
    margin: 0;
}
.rf-dropzone__sub {
    font-size: 0.8rem;
    color: #8a8a9a;
    margin: 4px 0 0;
}
.rf-img-preview img {
    width: 100%;
    border-radius: 8px;
    margin-top: 8px;
}

/* ---- Link modal ---- */
.rf-link-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.5);
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.rf-link-modal-backdrop.open {
    display: flex;
}
.rf-link-modal {
    background: #fff;
    border-radius: 14px;
    padding: 26px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 24px 60px rgba(26, 26, 46, 0.25);
}
.rf-link-modal h3 {
    margin: 0 0 18px;
    font-size: 1.15rem;
    color: #1a1a2e;
}
.rf-link-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}
.rf-link-btn {
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
}
.rf-link-btn--secondary {
    background: #f0f0f4;
    color: #2a2a3a;
}
.rf-link-btn--secondary:hover {
    background: #e4e4ec;
}
.rf-link-btn--primary {
    background: #3a3a3a;
    color: #fff;
}
.rf-link-btn--primary:hover {
    background: #242424;
}

/* ---- Stat icons (extends existing .rf-stat) ---- */
.rf-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}
.rf-stat__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.rf-stat__icon--blue {
    background: #efefef;
    color: #3a3a3a;
}
.rf-stat__icon--green {
    background: #e6f4ea;
    color: #2e7d46;
}
.rf-stat__icon--amber {
    background: #fcf2e0;
    color: #b9821f;
}
.rf-stat__icon--rose {
    background: #fbeaea;
    color: #c0392b;
}

/* ---- Quick action cards ---- */
.rf-quick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 22px;
}
.rf-quick__card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #e9e9ee;
    border-radius: 14px;
    padding: 18px 20px;
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.rf-quick__card:hover {
    border-color: #3a3a3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 26, 46, 0.08);
}
.rf-quick__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #3a3a3a;
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.rf-quick__title {
    display: block;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.95rem;
}
.rf-quick__sub {
    display: block;
    font-size: 0.82rem;
    color: #8a8a9a;
    margin-top: 2px;
}

/* ---- Empty state ---- */
.rf-empty {
    text-align: center;
    padding: 30px 20px;
}
.rf-empty__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    border-radius: 16px;
    background: #f0f0f4;
    color: #8a8a9a;
    display: grid;
    place-items: center;
}
.rf-empty__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}
.rf-empty__sub {
    color: #8a8a9a;
    font-size: 0.9rem;
    margin: 6px 0 18px;
}
.rf-empty .rf-submit {
    display: inline-flex;
}

/* ---- Content centering (kills right-side dead space) ---- */
.rf-content {
    margin: 0 auto;
}

/* ---- Sidebar active item -> charcoal ---- */
.rf-nav__link.is-active {
    background: #3a3a3a;
    color: #fff;
}

/* ---- Links -> charcoal ---- */
.rf-link {
    color: #3a3a3a;
}

/* ---- Responsive ---- */
@media (max-width: 880px) {
    .rf-quick {
        grid-template-columns: 1fr;
    }
    .rf-grid-2 {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 560px) {
    .rf-header {
        flex-direction: column;
    }
    .rf-stat {
        gap: 12px;
    }
}

/* Round variant of the thumb preview (used on author forms) */
.rf-thumb-preview--round {
    border-radius: 50%;
}

/* Avatar in the authors table */
.rf-author-cell {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.rf-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #3a3a3a;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    overflow: hidden;
    flex-shrink: 0;
}
.rf-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ============================================================
   29. PUBLIC BLOG / INSIGHTS  (append to app.css)
   ============================================================ */
.dw-blog--alt {
    background: var(--dw-light-bg);
}

/* ---- Grid ---- */
.dw-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 980px) {
    .dw-blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 620px) {
    .dw-blog__grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Card ---- */
.dw-blog-card {
    background: var(--dw-white);
    border: 1px solid #ece8df;
    border-radius: var(--dw-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--dw-transition);
}
.dw-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dw-shadow);
    border-color: var(--dw-wheat);
}
.dw-blog-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}
.dw-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.dw-blog-card:hover .dw-blog-card__media img {
    transform: scale(1.06);
}
.dw-blog-card__cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--dw-terracotta);
    color: var(--dw-white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
}
.dw-blog-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.dw-blog-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--dw-grey);
    margin-bottom: 10px;
}
.dw-blog-card__dot {
    color: var(--dw-wheat);
}
.dw-blog-card__title {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 12px;
}
.dw-blog-card__title a {
    color: var(--dw-charcoal);
    transition: var(--dw-transition);
}
.dw-blog-card__title a:hover {
    color: var(--dw-terracotta);
}
.dw-blog-card__excerpt {
    color: var(--dw-grey);
    font-size: 0.92rem;
    margin-bottom: 18px;
    flex: 1;
}
.dw-blog-card__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dw-terracotta);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--dw-transition);
}
.dw-blog-card__more svg {
    transition: transform var(--dw-transition);
}
.dw-blog-card__more:hover svg {
    transform: translateX(4px);
}

/* ---- Empty ---- */
.dw-blog__empty {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}
.dw-blog__empty p {
    color: var(--dw-grey);
}

/* ---- Pagination ---- */
.dw-blog__pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}
.dw-blog__pagination svg {
    width: 18px;
    height: 18px;
}

/* ============================================================
   30. PUBLIC SINGLE POST
   ============================================================ */
.dw-post-hero {
    position: relative;
    background: var(--dw-charcoal-dark);
    color: var(--dw-white);
    padding: 110px 0 90px;
    overflow: hidden;
}
.dw-post-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.dw-post-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(24, 24, 24, 0.92) 0%,
        rgba(33, 33, 33, 0.78) 70%,
        rgba(33, 33, 33, 0.6) 100%
    );
}
.dw-post-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.dw-post-hero__title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 22px;
}
.dw-post-hero__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
    flex-wrap: wrap;
}
.dw-post-hero__author {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.dw-post-hero__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--dw-wheat);
    color: var(--dw-charcoal);
    font-weight: 700;
    font-size: 0.85rem;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.dw-post-hero__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dw-post-hero__dot {
    color: var(--dw-wheat);
}

/* ---- Article body ---- */
.dw-post__inner {
    max-width: 760px;
}
.dw-post__content {
    color: var(--dw-charcoal);
    font-size: 1.08rem;
    line-height: 1.8;
}
.dw-post__content h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    color: var(--dw-charcoal);
    margin: 36px 0 14px;
}
.dw-post__content h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    color: var(--dw-charcoal);
    margin: 28px 0 12px;
}
.dw-post__content p {
    margin-bottom: 20px;
    color: var(--dw-grey);
}
.dw-post__content ul,
.dw-post__content ol {
    margin: 0 0 20px;
    padding-left: 24px;
    color: var(--dw-grey);
}
.dw-post__content li {
    margin-bottom: 8px;
}
.dw-post__content a {
    color: var(--dw-terracotta);
    text-decoration: underline;
}
.dw-post__content img {
    border-radius: var(--dw-radius);
    margin: 24px 0;
    box-shadow: var(--dw-shadow-sm);
}
.dw-post__content blockquote {
    border-left: 5px solid var(--dw-wheat);
    background: var(--dw-wheat-soft);
    border-radius: var(--dw-radius);
    padding: 18px 24px;
    margin: 24px 0;
    font-style: italic;
    color: var(--dw-charcoal);
}

.dw-post__foot {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid #ece8df;
}
.dw-post__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dw-charcoal);
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--dw-transition);
}
.dw-post__back:hover {
    color: var(--dw-terracotta);
}
.dw-post__back svg {
    transition: transform var(--dw-transition);
}
.dw-post__back:hover svg {
    transform: translateX(-4px);
}

/* ============================================================
   PRODUCT CATALOGUE  (-1)
   ============================================================ */
.prodcat-1 {
    background: white;
    padding: clamp(3rem, 6vw, 5.5rem) 0;
}

/* ---- Card ---- */
.prodcard-1 {
    background: var(--dw-white);
    border-radius: var(--dw-radius);
    box-shadow: var(--dw-shadow-sm);
    border: 1px solid rgba(212, 163, 115, 0.22);
    overflow: hidden;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
    transition: box-shadow var(--dw-transition), transform var(--dw-transition);
}
.prodcard-1:last-child {
    margin-bottom: 0;
}
.prodcard-1:hover {
    transform: translateY(-3px);
    box-shadow: var(--dw-shadow);
}

.prodcard-1 {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: stretch;
}
.prodcard-1--rev .prodcard-1__media {
    order: 2;
}

/* ---- Media column (light, padded — no black slab) ---- */
.prodcard-1__media {
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    background: var(--dw-wheat-soft);
}

.prodcard-1__lead {
    position: relative;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--dw-white);
    box-shadow: var(--dw-shadow-sm);
}
.prodcard-1__lead img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.prodcard-1:hover .prodcard-1__lead img {
    transform: scale(1.04);
}
.prodcard-1__lead--contain img,
.prodcard-1__thumb--contain img {
    object-fit: contain;
    padding: 0.75rem;
}

.prodcard-1__tag {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    background: var(--dw-terracotta);
    color: var(--dw-white);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.38rem 0.8rem;
    border-radius: 999px;
    box-shadow: var(--dw-shadow-sm);
}

.prodcard-1__thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}
.prodcard-1__thumb {
    position: relative;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--dw-white);
    box-shadow: var(--dw-shadow-sm);
}
.prodcard-1__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.prodcard-1__thumb:hover img {
    transform: scale(1.06);
}

/* ---- Body column ---- */
.prodcard-1__body {
    padding: clamp(1.75rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
}
.prodcard-1__title {
    font-size: clamp(1.5rem, 2.6vw, 2.05rem);
    line-height: 1.1;
    color: var(--dw-charcoal);
    margin: 0 0 0.6rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-family: "Playfair Display", serif;
}
.prodcard-1__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 52px;
    height: 3px;
    background: var(--dw-terracotta);
    border-radius: 2px;
}
.prodcard-1__sub {
    color: var(--dw-grey);
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0 0 1.4rem;
    max-width: 48ch;
}

/* ---- Table ---- */
.prodtable-1 {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.prodtable-1 thead th {
    text-align: left;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--dw-wheat);
    padding: 0 0.7rem 0.7rem;
    border-bottom: 2px solid rgba(212, 163, 115, 0.4);
}
.prodtable-1 th.num,
.prodtable-1 td.num {
    text-align: right;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
.prodtable-1 tbody td {
    padding: 0.72rem 0.7rem;
    color: var(--dw-charcoal);
    border-bottom: 1px solid rgba(212, 163, 115, 0.18);
}
.prodtable-1 tbody tr:last-child td {
    border-bottom: 0;
}
.prodtable-1 tbody tr {
    transition: background var(--dw-transition);
}
.prodtable-1 tbody tr:hover {
    background: var(--dw-wheat-soft);
}
.prodtable-1__name {
    font-weight: 600;
}

/* ---- Footer ---- */
.prodcard-1__foot {
    margin-top: auto;
    padding-top: 1.5rem;
}
.prodcard-1__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    background: var(--dw-terracotta);
    color: var(--dw-white);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    padding: 0.8rem 1.55rem;
    border-radius: 8px;
    transition: background var(--dw-transition), transform var(--dw-transition), box-shadow var(--dw-transition);
}
.prodcard-1__cta:hover {
    background: var(--dw-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: var(--dw-shadow-sm);
}
.prodcard-1__arrow {
    transition: transform var(--dw-transition);
}
.prodcard-1__cta:hover .prodcard-1__arrow {
    transform: translateX(4px);
}
.prodcard-1__note {
    margin: 1rem 0 0;
    font-size: 0.74rem;
    line-height: 1.5;
    color: var(--dw-grey);
    font-style: italic;
}

/* ---- Responsive ---- */
@media (max-width: 820px) {
    .prodcard-1 {
        grid-template-columns: 1fr;
    }
    .prodcard-1--rev .prodcard-1__media {
        order: 0;
    }
}
@media (max-width: 520px) {
    .prodtable-1 thead {
        display: none;
    }
    .prodtable-1,
    .prodtable-1 tbody,
    .prodtable-1 tr,
    .prodtable-1 td {
        display: block;
        width: 100%;
    }
    .prodtable-1 tr {
        border: 1px solid rgba(212, 163, 115, 0.3);
        border-radius: 8px;
        margin-bottom: 0.7rem;
        overflow: hidden;
    }
    .prodtable-1 tbody tr:hover {
        background: transparent;
    }
    .prodtable-1 td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0.62rem 1rem;
        text-align: right;
        border-bottom: 1px solid rgba(212, 163, 115, 0.18);
    }
    .prodtable-1 td::before {
        content: attr(data-label);
        font-size: 0.66rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--dw-wheat);
        text-align: left;
    }
    .prodtable-1 td:first-child {
        background: var(--dw-wheat-soft);
    }
    .prodtable-1 td:first-child::before {
        display: none;
    }
}
/* ---- Handles: keep box size, show full image ---- */
.prodcard-1__lead--contain,
.prodcard-1__thumb--contain {
    aspect-ratio: 4 / 3; /* same size as before */
}
.prodcard-1__lead--contain img,
.prodcard-1__thumb--contain img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    padding: 0.75rem;
}