@font-face {
    font-family: "DG Display";
    src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "DG Sans";
    src: url("../fonts/source-sans-3-400.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "DG Sans";
    src: url("../fonts/source-sans-3-600.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

:root {
    --dg-paper: #f4f7f8;
    --dg-white: #ffffff;
    --dg-ink: #132733;
    --dg-blue: #164f72;
    --dg-blue-deep: #0d344b;
    --dg-orange: #f36a2d;
    --dg-line: #ced9de;
    --dg-muted: #5f7079;
    --dg-success: #1e8159;
    --dg-display: "DG Display", "Arial Narrow", sans-serif;
    --dg-sans: "DG Sans", "Segoe UI", sans-serif;
    --dg-mono: "IBM Plex Mono", "Cascadia Mono", Consolas, monospace;
    --dg-radius: 3px;
    --dg-shadow: 0 20px 55px rgba(11, 44, 61, 0.12);
    --dg-shell: min(1180px, calc(100vw - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--dg-paper);
    color: var(--dg-ink);
    font-family: var(--dg-sans);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

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

:focus-visible {
    outline: 3px solid var(--dg-orange);
    outline-offset: 3px;
}

.dg-shell {
    width: var(--dg-shell);
    margin-inline: auto;
}

.dg-skip {
    position: fixed;
    left: 20px;
    top: -100px;
    z-index: 999;
    padding: 12px 18px;
    background: var(--dg-white);
    color: var(--dg-ink);
}

.dg-skip:focus {
    top: 20px;
}

.dg-utility {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--dg-blue-deep);
    color: #dce8ed;
    font-family: var(--dg-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dg-utility__inner {
    display: flex;
    align-items: center;
    min-height: 32px;
    gap: 28px;
}

.dg-utility__inner span:nth-child(2) {
    flex: 1;
}

.dg-utility a {
    text-decoration: none;
}

.dg-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(17, 50, 67, 0.1);
    background: rgba(244, 247, 248, 0.96);
    backdrop-filter: blur(14px);
}

.dg-header__inner {
    display: flex;
    align-items: center;
    min-height: 76px;
    gap: 34px;
}

.dg-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    text-decoration: none;
}

.dg-brand__mark {
    position: relative;
    display: block;
    width: 34px;
    height: 34px;
    transform: rotate(-30deg) skewY(30deg) scaleX(0.86);
}

.dg-brand__mark i {
    position: absolute;
    inset: 7px;
    border: 3px solid var(--dg-orange);
}

.dg-brand__mark i:nth-child(2) {
    transform: translate(7px, -7px);
    opacity: 0.62;
}

.dg-brand__mark i:nth-child(3) {
    transform: translate(14px, -14px);
    opacity: 0.32;
}

.dg-brand__name {
    display: grid;
    color: var(--dg-ink);
    font-family: var(--dg-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 0.035em;
}

.dg-brand__name strong {
    color: var(--dg-orange);
    font-weight: inherit;
}

.dg-brand__name small {
    margin-top: 7px;
    font-family: var(--dg-mono);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.24em;
}

.dg-nav {
    flex: 1;
}

.dg-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dg-nav__list a {
    position: relative;
    color: #294653;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.dg-nav__list a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--dg-orange);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.dg-nav__list a:hover::after,
.dg-nav__list a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.dg-nav-toggle {
    display: none;
}

.dg-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dg-orange);
    border-radius: var(--dg-radius);
    background: var(--dg-orange);
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    padding: 0 22px;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.dg-button:hover {
    border-color: #d94f13;
    background: #d94f13;
    transform: translateY(-2px);
}

.dg-button--small {
    min-height: 42px;
    padding-inline: 18px;
}

.dg-button--light {
    border-color: #fff;
    background: #fff;
    color: var(--dg-blue-deep);
}

.dg-button--light:hover {
    border-color: var(--dg-orange);
    background: var(--dg-orange);
    color: #fff;
}

.dg-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--dg-ink);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.dg-text-link span {
    color: var(--dg-orange);
    font-size: 22px;
    transition: transform 160ms ease;
}

.dg-text-link:hover span {
    transform: translateX(5px);
}

.dg-eyebrow {
    margin: 0 0 15px;
    color: var(--dg-blue);
    font-family: var(--dg-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.dg-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--dg-line);
    background: #eaf0f2;
}

.dg-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(22, 79, 114, 0.075) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 79, 114, 0.075) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.6) 50%, transparent 88%);
}

.dg-hero__inner {
    position: relative;
    display: grid;
    min-height: 710px;
    align-items: center;
    gap: 72px;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
    padding-block: 78px;
}

.dg-hero__copy {
    max-width: 655px;
}

.dg-hero .dg-eyebrow span {
    display: inline-block;
    width: 26px;
    height: 2px;
    margin: 0 9px 3px 0;
    background: var(--dg-orange);
}

.dg-hero h1,
.dg-section h2,
.dg-find-model h2,
.dg-final-cta h2,
.dg-page h1 {
    margin: 0;
    font-family: var(--dg-display);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 0.95;
    text-transform: uppercase;
}

.dg-hero h1 {
    max-width: 760px;
    font-size: clamp(64px, 7vw, 104px);
}

.dg-hero h1 em {
    color: var(--dg-blue);
    font-style: normal;
}

.dg-hero__lead {
    max-width: 630px;
    margin: 28px 0 0;
    color: #405b67;
    font-size: 20px;
}

.dg-hero__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 32px;
}

.dg-facts {
    display: grid;
    margin: 50px 0 0;
    border-top: 1px solid var(--dg-line);
    grid-template-columns: repeat(3, 1fr);
}

.dg-facts div {
    padding: 20px 16px 0 0;
}

.dg-facts div + div {
    border-left: 1px solid var(--dg-line);
    padding-left: 18px;
}

.dg-facts dt {
    font-family: var(--dg-display);
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.dg-facts dd {
    margin: 8px 0 0;
    color: var(--dg-muted);
    font-family: var(--dg-mono);
    font-size: 9px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.dg-blueprint {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 5px;
    background: var(--dg-blue-deep);
    box-shadow: var(--dg-shadow);
    color: #fff;
    padding: 28px;
}

.dg-blueprint::before,
.dg-blueprint::after {
    position: absolute;
    width: 34px;
    height: 34px;
    border-color: rgba(255, 255, 255, 0.34);
    content: "";
    pointer-events: none;
}

.dg-blueprint::before {
    top: 11px;
    left: 11px;
    border-top: 1px solid;
    border-left: 1px solid;
}

.dg-blueprint::after {
    right: 11px;
    bottom: 11px;
    border-right: 1px solid;
    border-bottom: 1px solid;
}

.dg-blueprint__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.dg-kicker {
    color: #8fb2c4;
    font-family: var(--dg-mono);
    font-size: 9px;
    letter-spacing: 0.16em;
}

.dg-blueprint h2 {
    margin: 4px 0 0;
    font-family: var(--dg-display);
    font-size: 34px;
    line-height: 1;
    text-transform: uppercase;
}

.dg-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #b9d2c7;
    font-family: var(--dg-mono);
    font-size: 9px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.dg-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #54d99c;
    box-shadow: 0 0 0 4px rgba(84, 217, 156, 0.12);
}

.dg-contour {
    position: relative;
    height: 102px;
    margin: 15px 0 12px;
    overflow: hidden;
}

.dg-contour svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: rgba(116, 180, 210, 0.42);
    stroke-width: 1.2;
}

.dg-contour path:nth-child(2) {
    stroke: rgba(243, 106, 45, 0.7);
}

.dg-contour span {
    position: absolute;
    right: 0;
    bottom: 2px;
    color: rgba(255, 255, 255, 0.34);
    font-family: var(--dg-mono);
    font-size: 8px;
    letter-spacing: 0.17em;
}

.dg-proof {
    background: #fff;
}

.dg-proof__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.dg-proof__grid > div {
    min-height: 138px;
    padding: 28px 28px 24px 0;
}

.dg-proof__grid > div + div {
    border-left: 1px solid var(--dg-line);
    padding-left: 28px;
}

.dg-proof span {
    display: block;
    margin-bottom: 14px;
    color: var(--dg-orange);
    font-family: var(--dg-mono);
    font-size: 10px;
}

.dg-proof strong,
.dg-proof small {
    display: block;
}

.dg-proof strong {
    font-size: 15px;
}

.dg-proof small {
    margin-top: 5px;
    color: var(--dg-muted);
    font-size: 13px;
}

.dg-section {
    padding: 110px 0;
}

.dg-section--ink {
    background: var(--dg-ink);
    color: #fff;
}

.dg-section__head {
    display: grid;
    align-items: end;
    gap: 70px;
    grid-template-columns: 1fr minmax(290px, 0.55fr);
    margin-bottom: 58px;
}

.dg-section__head h2 {
    font-size: clamp(52px, 6vw, 78px);
}

.dg-section__head > p {
    margin: 0 0 4px;
    color: var(--dg-muted);
}

.dg-section__head--light > p {
    color: #b8c8cf;
}

.dg-section--ink .dg-eyebrow,
.dg-find-model .dg-eyebrow,
.dg-final-cta .dg-eyebrow {
    color: #f89366;
}

.dg-process {
    display: grid;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--dg-line);
    list-style: none;
    grid-template-columns: repeat(4, 1fr);
}

.dg-process li {
    min-height: 270px;
    padding: 26px 27px 0 0;
}

.dg-process li + li {
    border-left: 1px solid var(--dg-line);
    padding-left: 27px;
}

.dg-process span {
    color: var(--dg-orange);
    font-family: var(--dg-mono);
    font-size: 11px;
}

.dg-process h3 {
    max-width: 190px;
    margin: 72px 0 14px;
    font-family: var(--dg-display);
    font-size: 28px;
    line-height: 1;
    text-transform: uppercase;
}

.dg-process p {
    margin: 0;
    color: var(--dg-muted);
    font-size: 14px;
}

.dg-materials {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    grid-template-columns: repeat(3, 1fr);
}

.dg-materials article {
    position: relative;
    min-height: 300px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 30px;
    transition: background-color 180ms ease, color 180ms ease;
}

.dg-materials article:hover {
    background: #fff;
    color: var(--dg-ink);
}

.dg-materials b {
    display: block;
    color: var(--dg-orange);
    font-family: var(--dg-display);
    font-size: 66px;
    line-height: 0.8;
}

.dg-materials span {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #78909c;
    font-family: var(--dg-mono);
    font-size: 9px;
}

.dg-materials h3 {
    margin: 56px 0 10px;
    font-size: 18px;
}

.dg-materials p {
    margin: 0;
    color: #afc0c8;
    font-size: 14px;
}

.dg-materials article:hover p {
    color: var(--dg-muted);
}

.dg-materials small {
    display: block;
    margin-top: 20px;
    color: #78909c;
    font-family: var(--dg-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dg-material-note {
    margin: 24px 0 0;
    color: #9eb1ba;
    font-size: 14px;
}

.dg-gallery {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(12, 1fr);
}

.dg-gallery__item {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #dbe3e7;
}

.dg-gallery__item--1,
.dg-gallery__item--4 {
    grid-column: span 7;
}

.dg-gallery__item--2,
.dg-gallery__item--3 {
    grid-column: span 5;
}

.dg-gallery__item--5,
.dg-gallery__item--6 {
    grid-column: span 5;
}

.dg-gallery__item--6 {
    grid-column: span 7;
}

.dg-gallery img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.02);
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

.dg-gallery__item--2 img,
.dg-gallery__item--5 img {
    height: 320px;
}

.dg-gallery__item:hover img {
    transform: scale(1.025);
    filter: saturate(1.08) contrast(1.02);
}

.dg-gallery figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: rgba(9, 37, 52, 0.88);
    color: #fff;
    font-size: 13px;
}

.dg-gallery figcaption span {
    color: #f9986d;
    font-family: var(--dg-mono);
}

.dg-find-model {
    padding: 105px 0;
    background: var(--dg-blue);
    color: #fff;
}

.dg-find-model__inner {
    display: grid;
    align-items: start;
    gap: 100px;
    grid-template-columns: 1fr 0.85fr;
}

.dg-find-model h2 {
    font-size: clamp(58px, 7vw, 90px);
}

.dg-find-model__inner > div:last-child > p {
    margin: 30px 0;
    color: #d4e3ea;
    font-size: 19px;
}

.dg-platforms {
    margin: 30px 0 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.dg-platforms a {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

.dg-platforms a:hover span {
    color: #ffb28f;
}

.dg-business {
    display: grid;
    align-items: center;
    gap: 85px;
    grid-template-columns: 1.05fr 0.95fr;
}

.dg-business__visual {
    position: relative;
}

.dg-business__visual::before {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 42%;
    height: 42%;
    border-top: 2px solid var(--dg-orange);
    border-right: 2px solid var(--dg-orange);
    content: "";
}

.dg-business__visual img {
    width: 100%;
    aspect-ratio: 1.1;
    object-fit: cover;
}

.dg-business__visual span {
    position: absolute;
    bottom: 18px;
    left: 18px;
    padding: 8px 11px;
    background: var(--dg-ink);
    color: #fff;
    font-family: var(--dg-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
}

.dg-business__copy h2 {
    font-size: clamp(48px, 5vw, 70px);
}

.dg-business__copy > p:not(.dg-eyebrow) {
    color: var(--dg-muted);
    font-size: 18px;
}

.dg-business__copy ul {
    margin: 28px 0;
    padding: 0;
    border-top: 1px solid var(--dg-line);
    list-style: none;
}

.dg-business__copy li {
    padding: 10px 0 10px 25px;
    border-bottom: 1px solid var(--dg-line);
    background: linear-gradient(var(--dg-orange), var(--dg-orange)) no-repeat 2px 50% / 8px 2px;
    font-size: 14px;
}

.dg-faq {
    border-top: 1px solid var(--dg-line);
    background: #fff;
}

.dg-faq__inner {
    display: grid;
    gap: 100px;
    grid-template-columns: 0.65fr 1.35fr;
}

.dg-faq h2 {
    font-size: 72px;
}

.dg-faq__inner > div:first-child > p:last-child {
    color: var(--dg-muted);
}

.dg-accordion {
    border-top: 1px solid var(--dg-line);
}

.dg-accordion details {
    border-bottom: 1px solid var(--dg-line);
}

.dg-accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 0;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

.dg-accordion summary::-webkit-details-marker {
    display: none;
}

.dg-accordion summary span {
    color: var(--dg-orange);
    font-size: 26px;
    font-weight: 400;
    transition: transform 180ms ease;
}

.dg-accordion details[open] summary span {
    transform: rotate(45deg);
}

.dg-accordion details p {
    max-width: 680px;
    margin: -5px 45px 23px 0;
    color: var(--dg-muted);
    font-size: 15px;
}

.dg-final-cta {
    padding: 110px 0;
    background: var(--dg-orange);
    color: #fff;
    text-align: center;
}

.dg-final-cta .dg-eyebrow {
    color: #fff3ed;
}

.dg-final-cta h2 {
    font-size: clamp(58px, 8vw, 100px);
}

.dg-final-cta p:not(.dg-eyebrow) {
    margin: 22px 0 28px;
    font-size: 19px;
}

.dg-footer {
    padding-top: 70px;
    background: #0a2433;
    color: #d9e4e9;
}

.dg-footer__grid {
    display: grid;
    gap: 55px;
    grid-template-columns: 1.5fr repeat(3, 1fr);
}

.dg-brand--footer .dg-brand__name {
    color: #fff;
}

.dg-footer__grid > div:first-child p {
    max-width: 310px;
    color: #9eb1ba;
}

.dg-footer h2 {
    margin: 3px 0 18px;
    color: #fff;
    font-family: var(--dg-mono);
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.dg-footer__grid > div:not(:first-child) a {
    display: block;
    margin: 9px 0;
    color: #afc0c8;
    font-size: 14px;
    text-decoration: none;
}

.dg-footer a:hover {
    color: #fff;
}

.dg-footer__meta {
    margin-top: 20px;
    color: #738a95;
    font-size: 12px;
}

.dg-footer__bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding: 19px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    color: #78909c;
    font-family: var(--dg-mono);
    font-size: 9px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.dg-page {
    min-height: 60vh;
    padding: 82px 0 110px;
    background: #fff;
}

.dg-page__inner {
    max-width: 920px;
}

.dg-page h1 {
    max-width: 880px;
    margin-bottom: 38px;
    font-size: clamp(54px, 7vw, 82px);
}

.dg-article__content {
    color: #304d5a;
}

.dg-article__content h2,
.dg-article__content h3 {
    margin: 45px 0 15px;
    color: var(--dg-ink);
    font-family: var(--dg-display);
    line-height: 1.05;
    text-transform: uppercase;
}

.dg-article__content h2 {
    font-size: 38px;
}

.dg-article__content h3 {
    font-size: 27px;
}

.dg-article__content a {
    color: var(--dg-blue);
}

.dg-article__content table {
    width: 100%;
    border-collapse: collapse;
}

.dg-article__content th,
.dg-article__content td {
    padding: 11px;
    border: 1px solid var(--dg-line);
    text-align: left;
}

/* Quote form */
.dg-quote-form {
    position: relative;
}

.dg-quote-tabs {
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 15px;
}

.dg-quote-tab {
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.04);
    color: #c9d9e0;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
}

.dg-quote-tab[aria-selected="true"] {
    border-color: var(--dg-orange);
    background: var(--dg-orange);
    color: #fff;
}

.dg-quote-panel[hidden] {
    display: none;
}

.dg-file-drop {
    position: relative;
    display: grid;
    min-height: 96px;
    place-items: center;
    border: 1px dashed rgba(255, 255, 255, 0.42);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    padding: 15px;
    text-align: center;
    transition: border-color 160ms ease, background-color 160ms ease;
}

.dg-file-drop:hover,
.dg-file-drop.is-dragging {
    border-color: var(--dg-orange);
    background: rgba(243, 106, 45, 0.1);
}

.dg-file-drop input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.dg-file-drop strong,
.dg-file-drop small {
    display: block;
}

.dg-file-drop strong {
    font-size: 14px;
}

.dg-file-drop small {
    margin-top: 4px;
    color: #90a9b4;
    font-size: 10px;
}

.dg-file-drop__icon {
    color: var(--dg-orange);
    font-size: 22px;
}

.dg-quote-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    margin-top: 11px;
}

.dg-field {
    display: grid;
    gap: 5px;
}

.dg-field--wide {
    grid-column: 1 / -1;
}

.dg-field label {
    color: #a9bec7;
    font-family: var(--dg-mono);
    font-size: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dg-field input,
.dg-field select,
.dg-field textarea {
    width: 100%;
    min-height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 8px 10px;
    font-size: 12px;
}

.dg-field textarea {
    min-height: 62px;
    resize: vertical;
}

.dg-field input::placeholder,
.dg-field textarea::placeholder {
    color: #91a8b3;
}

.dg-field select option {
    background: var(--dg-blue-deep);
}

.dg-quote-submit {
    width: 100%;
    margin-top: 13px;
}

.dg-quote-note {
    margin: 10px 0 0;
    color: #90a9b4;
    font-size: 10px;
    text-align: center;
}

.dg-hp {
    position: absolute !important;
    left: -9999px !important;
}

.dg-alert {
    margin: 0 0 15px;
    border-left: 3px solid var(--dg-orange);
    background: rgba(243, 106, 45, 0.12);
    color: #fff;
    padding: 10px 12px;
    font-size: 12px;
}

.dg-reference {
    display: inline-block;
    padding: 4px 7px;
    background: #eaf0f2;
    color: var(--dg-blue-deep);
    font-family: var(--dg-mono);
}

.dg-legal-form {
    max-width: 680px;
    margin: 32px 0;
    padding: 28px;
    border: 1px solid var(--dg-line);
    background: var(--dg-paper);
}

.dg-legal-form label {
    color: var(--dg-ink);
    font-weight: 600;
}

.dg-legal-form input[type="text"],
.dg-legal-form input[type="email"],
.dg-legal-form textarea {
    width: 100%;
    margin-top: 6px;
    border: 1px solid #aebdc4;
    border-radius: 2px;
    background: #fff;
    color: var(--dg-ink);
    padding: 11px 12px;
}

.dg-article__content .dg-alert {
    max-width: 680px;
    background: #fff1eb;
    color: #7b3214;
}

/* WooCommerce */
.dg-commerce .site-main,
.woocommerce-page main {
    width: var(--dg-shell);
    min-height: 60vh;
    margin-inline: auto;
    padding-block: 70px;
}

.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce #payment #place_order {
    border-radius: var(--dg-radius);
    background: var(--dg-orange);
}

.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce #payment #place_order:hover {
    background: #d94f13;
}

@media (max-width: 1040px) {
    .dg-header__inner > .dg-button {
        display: none;
    }

    .dg-nav__list {
        gap: 20px;
    }

    .dg-hero__inner {
        gap: 40px;
        grid-template-columns: 1fr 420px;
    }

    .dg-hero h1 {
        font-size: 68px;
    }

    .dg-facts {
        grid-template-columns: 1fr;
    }

    .dg-facts div + div {
        border-left: 0;
        padding-left: 0;
    }

    .dg-facts div {
        display: flex;
        align-items: baseline;
        gap: 12px;
        padding-top: 12px;
    }

    .dg-materials {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    :root {
        --dg-shell: min(100% - 32px, 720px);
    }

    .dg-utility__inner span:nth-child(2) {
        display: none;
    }

    .dg-utility__inner a {
        margin-left: auto;
    }

    .dg-header__inner {
        min-height: 68px;
    }

    .dg-nav-toggle {
        display: grid;
        width: 52px;
        min-height: 45px;
        margin-left: auto;
        place-content: center;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .dg-nav-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        margin: 3px 0;
        background: var(--dg-ink);
    }

    .dg-nav-toggle b {
        position: absolute;
        overflow: hidden;
        width: 1px;
        height: 1px;
    }

    .dg-nav {
        position: fixed;
        inset: 68px 0 auto;
        display: none;
        height: calc(100vh - 68px);
        padding: 35px 16px;
        background: var(--dg-paper);
    }

    .dg-nav.is-open {
        display: block;
    }

    .dg-nav__list {
        width: var(--dg-shell);
        align-items: flex-start;
        margin: 0 auto;
        flex-direction: column;
        gap: 0;
    }

    .dg-nav__list li {
        width: 100%;
        border-bottom: 1px solid var(--dg-line);
    }

    .dg-nav__list a {
        display: block;
        padding: 18px 0;
        font-family: var(--dg-display);
        font-size: 32px;
        text-transform: uppercase;
    }

    .dg-hero__inner {
        grid-template-columns: 1fr;
        padding-block: 62px;
    }

    .dg-hero h1 {
        font-size: clamp(58px, 15vw, 82px);
    }

    .dg-blueprint {
        max-width: 560px;
    }

    .dg-proof__grid,
    .dg-process {
        grid-template-columns: repeat(2, 1fr);
    }

    .dg-proof__grid > div:nth-child(3) {
        border-left: 0;
    }

    .dg-process li:nth-child(3) {
        border-left: 0;
    }

    .dg-section__head,
    .dg-find-model__inner,
    .dg-business,
    .dg-faq__inner {
        gap: 35px;
        grid-template-columns: 1fr;
    }

    .dg-gallery__item {
        grid-column: span 6 !important;
    }

    .dg-gallery img,
    .dg-gallery__item--2 img,
    .dg-gallery__item--5 img {
        height: 300px;
    }

    .dg-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    .dg-utility__inner span:first-child {
        font-size: 9px;
    }

    .dg-utility__inner a {
        font-size: 9px;
    }

    .dg-hero__inner {
        gap: 48px;
        padding-top: 45px;
    }

    .dg-hero h1 {
        font-size: 56px;
    }

    .dg-hero__lead {
        font-size: 17px;
    }

    .dg-hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .dg-facts dt {
        font-size: 18px;
    }

    .dg-blueprint {
        margin-inline: -6px;
        padding: 22px 18px;
    }

    .dg-contour {
        height: 75px;
    }

    .dg-quote-grid {
        grid-template-columns: 1fr;
    }

    .dg-field--wide {
        grid-column: auto;
    }

    .dg-proof__grid,
    .dg-process,
    .dg-materials {
        grid-template-columns: 1fr;
    }

    .dg-proof__grid > div + div,
    .dg-process li + li {
        border-left: 0;
        padding-left: 0;
    }

    .dg-proof__grid > div,
    .dg-process li {
        border-bottom: 1px solid var(--dg-line);
    }

    .dg-section {
        padding-block: 78px;
    }

    .dg-section__head {
        margin-bottom: 38px;
    }

    .dg-section__head h2,
    .dg-find-model h2,
    .dg-business__copy h2,
    .dg-faq h2 {
        font-size: 52px;
    }

    .dg-process li {
        min-height: 215px;
    }

    .dg-process h3 {
        margin-top: 48px;
    }

    .dg-materials article {
        min-height: 260px;
    }

    .dg-gallery__item {
        grid-column: 1 / -1 !important;
    }

    .dg-gallery img,
    .dg-gallery__item--2 img,
    .dg-gallery__item--5 img {
        height: 280px;
    }

    .dg-find-model,
    .dg-final-cta {
        padding-block: 78px;
    }

    .dg-footer__grid {
        grid-template-columns: 1fr;
    }

    .dg-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
