:root {
  --dbc-black: #090a09;
  --dbc-ink: #14140f;
  --dbc-gold: #c9a45c;
  --dbc-gold-light: #e2c789;
  --dbc-cream: #f2eadb;
  --dbc-paper: #faf7f0;
  --dbc-brown: #3a2b21;
  --dbc-line: rgba(201, 164, 92, .38);
  --dbc-serif: "Cinzel", Georgia, serif;
  --dbc-sans: "Manrope", Arial, sans-serif;
}

.dbc-v1-page .content-area,
.dbc-v1-page .site-main,
.dbc-v1-page .entry-content,
.dbc-v1-page .content-container,
.dbc-v1-page .site-container,
.dbc-v1-page #primary,
.dbc-v1-page #main {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

.dbc-v1-page .entry-header,
.dbc-v1-page .entry-title,
.dbc-v1-page .page-header,
.dbc-v1-page .site-footer,
.dbc-v1-page #colophon {
  display: none !important;
}

.dbc-v1-page .entry-content > * {
  max-width: none !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.dbc-site,
.dbc-topbar,
.dbc-footer {
  box-sizing: border-box;
  font-family: var(--dbc-sans);
}

.dbc-site *,
.dbc-site *::before,
.dbc-site *::after,
.dbc-topbar *,
.dbc-footer * {
  box-sizing: inherit;
}

.dbc-site {
  overflow: hidden;
  color: var(--dbc-ink);
  background: var(--dbc-paper);
  font-size: 16px;
  line-height: 1.7;
}

.dbc-site h1,
.dbc-site h2,
.dbc-site h3,
.dbc-footer h3 {
  margin: 0;
  color: inherit;
  font-family: var(--dbc-serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.dbc-site h1 { font-size: clamp(3rem, 7.4vw, 7.5rem); }
.dbc-site h2 { font-size: clamp(2.2rem, 4.7vw, 4.7rem); }
.dbc-site h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
.dbc-site p { margin: 0 0 1.35rem; }
.dbc-site em { color: var(--dbc-gold-light); font-style: normal; }
.dbc-site a,
.dbc-footer a { text-decoration: none; }

.dbc-frame {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.dbc-topbar {
  position: relative;
  z-index: 4;
  padding: 10px 0;
  color: var(--dbc-gold-light);
  background: var(--dbc-black);
  border-bottom: 1px solid var(--dbc-line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-align: center;
  text-transform: uppercase;
}

.dbc-topbar i {
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 18px 3px;
  background: var(--dbc-gold);
  transform: rotate(45deg);
}

.dbc-mark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--dbc-gold-light);
  text-decoration: none;
}

.dbc-mark img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.dbc-mark span { display: grid; gap: 2px; }
.dbc-mark b { font-family: var(--dbc-serif); font-size: 17px; letter-spacing: .16em; }
.dbc-mark small { font-size: 8px; font-weight: 700; letter-spacing: .27em; }

.dbc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--dbc-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.dbc-eyebrow::before,
.dbc-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.dbc-hero {
  position: relative;
  min-height: min(900px, 92vh);
  display: flex;
  align-items: center;
  color: #fff;
  background-image: var(--dbc-hero);
  background-position: center;
  background-size: cover;
}

.dbc-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, .96) 0%, rgba(5, 5, 4, .78) 43%, rgba(5, 5, 4, .18) 76%, rgba(5, 5, 4, .44) 100%),
    linear-gradient(180deg, rgba(5, 5, 4, .2), rgba(5, 5, 4, .66));
}

.dbc-hero__shade::after,
.dbc-page-hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201, 164, 92, .28);
  pointer-events: none;
}

.dbc-hero__content {
  position: relative;
  z-index: 1;
  padding: 92px 0 120px;
}

.dbc-hero__mark { margin-bottom: 64px; }

.dbc-hero h1 {
  max-width: 980px;
  color: #fff;
  text-transform: uppercase;
}

.dbc-hero h1 em,
.dbc-page-hero h1 em { font-family: Georgia, serif; font-weight: 400; letter-spacing: -.025em; text-transform: none; }

.dbc-hero__content > p {
  max-width: 680px;
  margin: 32px 0 38px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.dbc-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.dbc-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 15px 23px;
  border: 1px solid var(--dbc-gold);
  color: var(--dbc-black) !important;
  background: var(--dbc-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: .25s ease;
}

.dbc-button:hover { color: #fff !important; background: transparent; transform: translateY(-2px); }
.dbc-button--secondary { color: var(--dbc-gold-light) !important; background: transparent; }
.dbc-button--secondary:hover { color: var(--dbc-black) !important; background: var(--dbc-gold); }

.dbc-scroll {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  display: grid;
  gap: 7px;
  justify-items: center;
  color: rgba(255, 255, 255, .65) !important;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.dbc-scroll span { color: var(--dbc-gold); font-size: 22px; }

.dbc-section { padding: clamp(78px, 10vw, 145px) 0; background: var(--dbc-paper); }
.dbc-section--cream { background: var(--dbc-cream); }

.dbc-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.dbc-split--reverse { grid-template-columns: minmax(320px, .8fr) minmax(0, 1fr); }
.dbc-prose { padding-top: 48px; color: #514b43; font-size: 1.05rem; }
.dbc-section-head { max-width: 850px; margin-bottom: 58px; }
.dbc-section-head p { max-width: 700px; margin-top: 24px; color: #5d574f; }

.dbc-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(20, 20, 15, .18);
}

.dbc-card {
  position: relative;
  min-height: 390px;
  padding: clamp(32px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(20, 20, 15, .18);
  background: var(--dbc-paper);
}

.dbc-card:last-child { border-right: 0; }
.dbc-card--dark { color: #fff; background: var(--dbc-black); }
.dbc-card__number { margin-bottom: auto; color: var(--dbc-gold); font-family: var(--dbc-serif); font-size: 13px; letter-spacing: .15em; text-transform: uppercase; }
.dbc-card h3 { margin: 45px 0 18px; }
.dbc-card p { color: #625b52; }
.dbc-card--dark p { color: rgba(255, 255, 255, .68); }
.dbc-card a { margin-top: auto; color: var(--dbc-brown); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.dbc-card--dark a { color: var(--dbc-gold-light); }
.dbc-card a span { margin-left: 8px; color: var(--dbc-gold); }

.dbc-feature {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  color: #fff;
  background: var(--dbc-black);
}

.dbc-feature--reverse { grid-template-columns: .9fr 1.1fr; }
.dbc-feature--reverse .dbc-feature__image { order: 2; }
.dbc-feature__image { min-height: 520px; background-image: linear-gradient(rgba(6, 6, 4, .15), rgba(6, 6, 4, .32)), var(--dbc-feature); background-position: center; background-size: cover; }
.dbc-feature__copy { align-self: center; max-width: 650px; padding: clamp(60px, 8vw, 120px); }
.dbc-feature__copy h2 { color: #fff; }
.dbc-feature__copy p { margin: 30px 0; color: rgba(255, 255, 255, .68); }
.dbc-checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px 24px; margin: 0 0 34px; padding: 0; list-style: none; }
.dbc-checks li { padding-left: 18px; color: rgba(255, 255, 255, .82); font-size: 13px; }
.dbc-checks li::before { content: "◆"; float: left; margin-left: -18px; color: var(--dbc-gold); font-size: 7px; }

.dbc-origin { background: #161510; color: #fff; }
.dbc-origin .dbc-section-head p { color: rgba(255, 255, 255, .62); }
.dbc-pullquote { display: block; padding-left: 30px; border-left: 1px solid var(--dbc-gold); color: var(--dbc-gold-light); font-family: var(--dbc-serif); font-size: clamp(1.7rem, 3vw, 3rem); line-height: 1.38; }

.dbc-band { position: relative; padding: 78px 0; color: #fff; background: var(--dbc-brown); text-align: center; }
.dbc-band::before,
.dbc-band::after { content: ""; position: absolute; left: 0; width: 100%; height: 1px; background: var(--dbc-line); }
.dbc-band::before { top: 12px; }
.dbc-band::after { bottom: 12px; }
.dbc-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.7rem); }
.dbc-band p { max-width: 700px; margin: 18px auto 0; color: rgba(255, 255, 255, .7); }

.dbc-cta { text-align: center; }
.dbc-cta .dbc-frame { max-width: 960px; }
.dbc-cta p { max-width: 680px; margin: 24px auto 30px; color: #5d574f; }
.dbc-cta .dbc-actions { justify-content: center; margin-top: 34px; }
.dbc-cta .dbc-button:hover { color: var(--dbc-black) !important; border-color: var(--dbc-black); }

.dbc-page-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: end;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(7, 7, 5, .95), rgba(7, 7, 5, .35)), var(--dbc-hero);
  background-position: center;
  background-size: cover;
}

.dbc-page-hero .dbc-frame { position: relative; z-index: 1; padding: 120px 0 100px; }
.dbc-page-hero h1 { max-width: 980px; color: #fff; }
.dbc-page-hero p { max-width: 650px; margin: 30px 0; color: rgba(255, 255, 255, .72); font-size: 1.08rem; }
.dbc-page-hero--light { background-image: linear-gradient(90deg, rgba(7, 7, 5, .95), rgba(7, 7, 5, .2)), var(--dbc-hero); }
.dbc-page-hero--minimal { min-height: 580px; background: var(--dbc-black); }
.dbc-page-hero--minimal::before { content: "DBC"; position: absolute; right: -3vw; bottom: -11vw; color: rgba(201, 164, 92, .055); font-family: var(--dbc-serif); font-size: min(42vw, 560px); font-weight: 700; line-height: 1; }

.dbc-use-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 54px; border-top: 1px solid #d6cfc2; border-left: 1px solid #d6cfc2; }
.dbc-use-grid span { min-height: 120px; display: flex; align-items: center; justify-content: center; padding: 25px; border-right: 1px solid #d6cfc2; border-bottom: 1px solid #d6cfc2; font-family: var(--dbc-serif); font-size: 1.05rem; text-align: center; }

.dbc-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dbc-product-grid article { min-height: 400px; padding: 44px; display: flex; flex-direction: column; justify-content: end; color: #fff; background: var(--dbc-black); border: 1px solid var(--dbc-line); }
.dbc-product-grid article:nth-child(2) { background: var(--dbc-brown); transform: translateY(28px); }
.dbc-product-grid article span { margin-bottom: auto; color: var(--dbc-gold); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.dbc-product-grid article h3 { margin: 50px 0 17px; color: #fff; }
.dbc-product-grid article p { color: rgba(255, 255, 255, .65); }
.dbc-product-grid article b { color: var(--dbc-gold-light); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.dbc-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 50px; background: #cfc5b3; }
.dbc-values article { min-height: 260px; padding: 44px; background: var(--dbc-paper); }
.dbc-values b { color: var(--dbc-gold); font-family: var(--dbc-serif); }
.dbc-values h3 { margin: 40px 0 15px; }
.dbc-values p { color: #625b52; }

.dbc-storyline { max-width: 950px; }
.dbc-storyline article { display: grid; grid-template-columns: 125px 1fr; gap: 50px; padding: 55px 0; border-bottom: 1px solid #d9d0c3; }
.dbc-storyline article > span { color: var(--dbc-gold); font-family: var(--dbc-serif); font-size: 1.2rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.dbc-storyline h2 { margin-bottom: 18px; font-size: clamp(1.9rem, 3.4vw, 3.2rem); }
.dbc-storyline p { color: #5d574f; }

.dbc-contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.dbc-contact-grid h2 { margin-bottom: 24px; }
.dbc-contact-notes { display: grid; gap: 9px; margin-top: 40px; color: var(--dbc-brown); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.dbc-contact-notes span { padding-bottom: 9px; border-bottom: 1px solid #ded6c9; }
.dbc-form-card { padding: clamp(30px, 5vw, 60px); color: #fff; background: var(--dbc-black); border: 1px solid var(--dbc-gold); }
.dbc-form { display: grid; gap: 18px; }
.dbc-field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.dbc-form label { display: grid; gap: 7px; color: var(--dbc-gold-light); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.dbc-form input,
.dbc-form select,
.dbc-form textarea { width: 100%; border: 1px solid rgba(201, 164, 92, .35); border-radius: 0; padding: 13px 14px; color: #fff; background: rgba(255, 255, 255, .055); font: 400 15px/1.5 var(--dbc-sans); letter-spacing: normal; text-transform: none; }
.dbc-form select option { color: #111; }
.dbc-form input:focus,
.dbc-form select:focus,
.dbc-form textarea:focus { outline: 1px solid var(--dbc-gold); border-color: var(--dbc-gold); }
.dbc-form .dbc-button { justify-self: start; cursor: pointer; }
.dbc-hp { position: absolute !important; left: -9999px !important; }
.dbc-notice { margin-bottom: 22px; padding: 14px 16px; border: 1px solid var(--dbc-gold); }
.dbc-notice--success { color: #e8d59e; }
.dbc-notice--error { color: #ffb5a7; border-color: #b65b4a; }

.dbc-footer { padding: 82px 0 22px; color: rgba(255, 255, 255, .6); background: #050505; }
.dbc-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
.dbc-footer__grid > div { display: grid; align-content: start; gap: 10px; }
.dbc-footer__grid p { max-width: 440px; margin: 24px 0 0; }
.dbc-footer h3 { margin-bottom: 14px; color: var(--dbc-gold-light); font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; }
.dbc-footer a { color: rgba(255, 255, 255, .72); }
.dbc-footer a:hover { color: var(--dbc-gold-light); }
.dbc-footer__base { margin-top: 60px; padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

@media (max-width: 900px) {
  .dbc-frame { width: min(calc(100% - 36px), 1200px); }
  .dbc-card-grid,
  .dbc-product-grid { grid-template-columns: 1fr; }
  .dbc-card { min-height: 300px; border-right: 0; border-bottom: 1px solid rgba(20, 20, 15, .18); }
  .dbc-card:last-child { border-bottom: 0; }
  .dbc-product-grid article:nth-child(2) { transform: none; }
  .dbc-feature,
  .dbc-feature--reverse { grid-template-columns: 1fr; }
  .dbc-feature--reverse .dbc-feature__image { order: 0; }
  .dbc-feature__copy { max-width: none; }
  .dbc-use-grid { grid-template-columns: repeat(2, 1fr); }
  .dbc-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .dbc-topbar { font-size: 8px; letter-spacing: .12em; }
  .dbc-topbar i { margin-inline: 8px; }
  .dbc-hero { min-height: 790px; }
  .dbc-hero__shade { background: linear-gradient(90deg, rgba(5, 5, 4, .95), rgba(5, 5, 4, .55)); }
  .dbc-hero__content { padding: 70px 0 95px; }
  .dbc-hero__mark { margin-bottom: 50px; }
  .dbc-hero__mark .dbc-mark span { display: none; }
  .dbc-hero__mark .dbc-mark img { width: 75px; height: 75px; }
  .dbc-scroll { display: none; }
  .dbc-section { padding: 76px 0; }
  .dbc-split,
  .dbc-split--reverse { grid-template-columns: 1fr; gap: 28px; }
  .dbc-prose { padding-top: 0; }
  .dbc-section-head { margin-bottom: 40px; }
  .dbc-card { padding: 34px 28px; }
  .dbc-feature__image { min-height: 390px; }
  .dbc-feature__copy { padding: 65px 24px; }
  .dbc-checks { grid-template-columns: 1fr; }
  .dbc-page-hero { min-height: 600px; }
  .dbc-page-hero .dbc-frame { padding: 110px 0 80px; }
  .dbc-values,
  .dbc-use-grid { grid-template-columns: 1fr; }
  .dbc-storyline article { grid-template-columns: 1fr; gap: 12px; }
  .dbc-field-row { grid-template-columns: 1fr; }
  .dbc-footer__grid { grid-template-columns: 1fr; gap: 42px; }
  .dbc-footer__base { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .dbc-site *,
  .dbc-site *::before,
  .dbc-site *::after { scroll-behavior: auto !important; transition: none !important; }
}
